import { ActionConstructor } from "applesauce-actions"; export declare function useAction>(Action: ActionConstructor, args: Args | undefined): { loading: boolean; run: () => Promise; exec: () => import("rxjs").Observable | undefined; };