interface ButtonCopyProps extends React.HTMLAttributes { children?: React.ReactNode; style?: React.CSSProperties; backgroundColor?: string; color?: string; textToCopy: string; } export declare const ButtonCopy: React.FC; export {};