import { LoadingValue } from "../types";
export declare const useAsyncAction: <T>(fn: () => Promise<T>, cleanup: (() => void) | null, deps: any[]) => LoadingValue<T>;
