import { FatFormItemMethods, FatFormItemWidth } from './types'; export declare function validateFormItemProps(props: { prop?: string; }, name?: string): void; /** * 是否在修改上下文下。主要用于判断是否是人为修改的表单数据 * @returns */ export declare function isInModifyContext(): boolean; export declare function runInModifyContext(fn: () => void): void; /** * 表单值转换 * @param response * @param items */ export declare function convert(response: any, items: Set>): void; export declare function transform(response: any, items: Set>): void; /** * 获取根属性 */ export declare function pickRootField(prop: string): string; export declare function formItemWidth(width: number | FatFormItemWidth): string; //# sourceMappingURL=utils.d.ts.map