import { default as React } from 'react'; export interface CopyProps { children: React.ReactNode; value: string; showIcon?: boolean; className?: string; onCopy?: (value: string) => void; isCopied?: boolean; copiedText?: string; timeout?: number; } export declare const Copy: React.FC;