import { IFormModelItem } from './types'; /** * 排除掉内部属性,不向下传递 * @param model */ export declare const omitSystemProps: (model: IFormModelItem) => { [key: string]: any; isVirtualKey?: boolean | undefined; valueItems?: string[] | undefined; detailTableId?: string | undefined; componentType?: string | undefined; }; /** * 获取校验错误信息字段 key * @param dataKey * @param detailTableId * @param rowId */ export declare const getMessageKey: (dataKey: string, detailTableId?: string, rowId?: string) => string; /** * 是否是明细表字段 * @param model */ export declare const isDetailTableField: (model: IFormModelItem) => boolean | "" | undefined;