interface CopyableTextProps { children: string; className?: string; textClassName?: string; showIcon?: boolean; iconSize?: number; iconColor?: string; selectable?: boolean; onCopy?: () => void; } export declare function CopyableText({ children, className, textClassName, showIcon, iconSize, iconColor, selectable, onCopy, }: CopyableTextProps): import("react").JSX.Element; export {}; //# sourceMappingURL=CopyableText.d.ts.map