declare const useCopyToClipboard: () => {
    copied: boolean;
    copyToClipboard: (text: string) => void;
};
export default useCopyToClipboard;
