import { DependencyList } from 'react'; import { AsyncFn, AsyncState } from '../useAsyncFn'; /** * Hook that resolves an async function or a function that returns a promise */ export declare const useAsync: (fn: (...args: any[]) => Promise, deps?: DependencyList) => AsyncFn; export { AsyncFn, AsyncState, };