declare const useClipboardCopy: (options?: { text?: string; onSuccess?: (text: string) => void; onFailure?: (text: string) => void; key?: string; }) => (otherText?: string) => Promise; export { useClipboardCopy };