import { IBasic } from './../../types/IBasic'; export interface IFormItem, K extends keyof T = keyof T> extends Record { name: K; defaultVal?: ((item: IFormItem) => T[K]) | IBasic; } export declare type IFormItemConf> = IFormItem; export declare type IGetInitFormDataConf = { ignore?: (keyof T)[]; };