import type { Notification } from '../types/notification'; export declare function useCopyToClipboard(options?: Partial): { copy: (text: string, success?: { title?: string; description?: string; }, failure?: { title?: string; description?: string; }) => void; };