import { CSSProperties, ReactNode } from 'react'; export interface CopyProps { className?: string; onCopy?: (e: any) => undefined; style?: CSSProperties; tipStyle?: CSSProperties; text: string; message?: ReactNode; duration?: number; placement?: 'top' | 'right' | 'bottom' | 'left'; topMessage?: boolean; [x: string]: any; } export declare function Copy(props: CopyProps): JSX.Element;