import { UseAsyncOptions } from "../../../hooks/index.js"; /** * * @kind 07-Misc */ export declare const useAsync: Promise>(fn: T, options?: UseAsyncOptions) => { execute: () => Promise; status: string; value: Awaited> | null; error: Error | null; loading: boolean; };