/** * useAsync Hook * Async operations */ import type { UseAsyncOptions } from './types'; export declare const useAsync: (asyncFunction: () => Promise, options?: UseAsyncOptions) => { data: T; isLoading: boolean; error: Error; execute: () => Promise; }; export type { UseAsyncOptions } from './types'; //# sourceMappingURL=useAsync.d.ts.map