import { type RefObject } from 'react'; interface UseCopyActionOptions { fullFormatted: string; liveRef?: RefObject; onCopy?: (value: string) => void; } export declare function useCopyAction({ liveRef, fullFormatted, onCopy }: UseCopyActionOptions): { copied: boolean; copyAriaLabel: string; copyButtonTitle: string; onCopyClick: () => Promise; }; export {}; //# sourceMappingURL=useCopyAction.d.ts.map