import { ReactNode } from 'react'; import { TooltipProps } from '../Tooltip'; export type CopyToClipboardProps = { text: string; size?: 'small' | 'medium' | 'large'; tooltipDisabled?: boolean; tooltipTitle?: ReactNode; tooltipPlacement?: TooltipProps['placement']; tooltipDuration?: number; className?: string; testId?: string; }; export declare const CopyToClipboard: ({ text, tooltipDisabled, size, testId, className, tooltipTitle, tooltipDuration, tooltipPlacement, }: CopyToClipboardProps) => JSX.Element; //# sourceMappingURL=CopyToClipboard.d.ts.map