/// import { CopyToClipboardProps } from '../CopyToClipboard'; import { QAProps } from '../types'; export interface ClipboardButtonProps extends QAProps { /** Text to copy */ text: string; /** Icon size in pixels */ size?: number; /** Element CSS class */ className?: string; /** Handler that would be invoked after success copy to clipboard */ onCopy?: CopyToClipboardProps['onCopy']; } export declare function ClipboardButton({ text, size, className, qa, onCopy, }: ClipboardButtonProps): JSX.Element;