interface IFieldModeInput { fields?: any[]; systemFields?: any[]; customFields?: any[]; } declare type IFieldModeInputModeType = 'edit' | 'create'; interface IFieldModeConfig { mode: IFieldModeInputModeType; } /** * 根据模型获取对应的字段 * @param fieldInput * @param config */ declare function getFiledByMode(fieldInput: IFieldModeInput, config: IFieldModeConfig): void; export default getFiledByMode;