import { StatusType } from '../utils/formUtils/FormContext'; export declare type FormStatusType = { [key in StatusType]?: unknown; }; /** * 表单状态管理 */ export declare const useFormStatus: (value: FormStatusType) => { addListener: (fn: import("../utils/formUtils/FormContext").MonitorFn) => void; removeListener: (fn: import("../utils/formUtils/FormContext").MonitorFn) => void; run: (type: StatusType, v: unknown) => void; status: FormStatusType; };