import { ButtonProps } from '.';
export interface ButtonCopyProps extends ButtonProps {
    value?: string;
    getValue?: () => string;
    onCopy?: () => void;
}
export default function ButtonCopy({ onCopy, getValue, value, title, ...props }: ButtonCopyProps): import("react/jsx-runtime").JSX.Element;
