export interface UseCopyToClipboardOptions { /** Success message duration in ms */ successDuration?: number; /** Custom success handler */ onSuccess?: (text: string) => void; /** Custom error handler */ onError?: (error: Error) => void; } export declare const useCopyToClipboard: (options?: UseCopyToClipboardOptions) => { copy: (text: string) => Promise; isCopied: boolean; error: Error | null; reset: () => void; }; //# sourceMappingURL=useCopyToClipboard.d.ts.map