import React from 'react'; type copiedValue = string | null; type copyFn = (text: string, time: number | null) => Promise; export declare function useCopyToClipboard(): [copiedValue, copyFn]; export interface ICopyProps extends React.HTMLAttributes { data: string; copyLabel: string; copiedLabel: string; timeout?: number | null; } export declare function CopyButton({ data, copyLabel, copiedLabel, timeout, ...props }: ICopyProps): React.JSX.Element; export {}; //# sourceMappingURL=CopyButton.d.ts.map