import { DependencyList } from 'react';
export { AsyncState, AsyncFn } from './useAsyncFn';
export default function useAsync<Result = any, Args extends any[] = any[]>(fn: (...args: Args | []) => Promise<Result>, deps?: DependencyList): import("./useAsyncFn").AsyncState<Result>;
