import { FatFormMethods, FatFormCollection } from './types'; export declare function provideFatFormCollection(collection: FatFormCollection): void; export declare function useFatFormCollection(): FatFormCollection | null; /** * fat-form 实例引用 * @returns */ export declare function useFatFormRef(): import("@wakeadmin/demi").Ref | undefined>; export declare function useFatFormContext(): FatFormMethods | null; export declare function useInheritableProps(): import("./types").FatFormItemInheritableProps | undefined; export declare const useFatFormInheritableProps: typeof useInheritableProps; export declare function useTouches(): { touch: (prop: string) => void; untouch: (prop: string) => void; isTouched: (prop: string) => boolean; clear: () => void; getAllTouches: () => string[]; }; //# sourceMappingURL=hooks.d.ts.map