export interface IFieldDef {
    name: string;
    title: string;
    column: string;
    type: string;
    required: boolean;
    disabled: boolean;
    hidden: boolean;
    blinkOnProject: boolean;
    value?: any;
}
//# sourceMappingURL=IFieldDef.d.ts.map