export declare function useClipboard(value: string | undefined, duration?: number): {
    copied: boolean;
    handleCopy: () => Promise<void>;
};
