/** * useCopyToClipboard — encapsulates the "Copy → ✓ Copied (2s) → Copy" cycle * so call sites don't have to hand-roll setTimeout + state. The timer is * cleared on unmount to avoid React warnings from setState after unmount. */ export declare function useCopyToClipboard(resetMs?: number): { copied: boolean; copy: (text: string) => Promise; }; //# sourceMappingURL=use-copy-to-clipboard.d.ts.map