declare function useCopy({ timeout }?: { /** @default 2000 */ timeout?: number; }): { copy: (content: string) => Promise; isCopied: boolean; }; export { useCopy };