import { FieldInfoModel } from './fieldInfoModel';
export declare class DataFieldInfoModel {
    fieldName: string;
    fieldTypeString: string;
    fieldTypeClass: string;
    fieldTitle: string;
    fieldDescription: string;
    fieldScriptDescription: string;
    fieldDefaultValue: string;
    fieldValue: string;
    fieldTypeFullName: string;
    accessSearchField: boolean;
    accessWatchField: boolean;
    accessEditField: boolean;
    accessAddField: boolean;
    accessExportField: boolean;
    fieldsInfo: FieldInfoModel[];
}
