import { Extract } from './extract'; export declare class Field { autoLoad: boolean; bindingSet: any; controlType: number; dbType: string; description: string; editableGrid: any; extract: Extract; format: any; maxValue: any; minValue: any; name: string; options: any; readOnly: boolean; required: boolean; size: any; title: string; watermark: string; value: string; label: string; constructor(autoLoad?: boolean, bindingSet?: any, controlType?: number, dbType?: string, description?: string, editableGrid?: any, extract?: Extract, format?: any, maxValue?: any, minValue?: any, name?: string, options?: any, readOnly?: boolean, required?: boolean, size?: any, title?: string, watermark?: string, value?: string, label?: string); }