interface UseCopyActionOptions { fullFormatted: () => string; liveRef?: () => HTMLElement | null; onCopy?: (value: string) => void; } export declare function useCopyAction({ liveRef, fullFormatted, onCopy }: UseCopyActionOptions): { readonly copied: boolean; readonly copyAriaLabel: string; readonly copyButtonTitle: "Copied" | "Copy phone number"; onCopyClick: () => Promise; }; export {}; //# sourceMappingURL=useCopyAction.svelte.d.ts.map