export interface CopyButtonProps { /** Value that will be copied to the clipboard when the button is clicked */ value: string; /** * Copied status timeout in ms * @default 1000 */ timeout?: number; /** Children callback, provides current status and copy function as an argument */ children: (payload: { copied: boolean; copy: () => void; }) => React.ReactNode; } export declare function CopyButton(props: CopyButtonProps): import("react").JSX.Element;