//#region src/typography/hooks/useCopyClick.d.ts declare function useCopyClick({ copyConfig, getText }: { copyConfig: any; getText?: () => any; }): { copied: import("vue").ShallowRef; copyLoading: import("vue").ShallowRef; onClick: (e?: MouseEvent) => Promise; }; //#endregion export { useCopyClick as default };