import { CollectionField } from './collection_field'; import { EditableField } from '../form/editable/editable_field'; export declare class GridField extends CollectionField { caption: string; captionTemplate: string; editor: EditableField; readonly: boolean; require: boolean; draggable: boolean; frozen: boolean; sortable: boolean; sortOrder: number; resizeable: boolean; [key: string]: any; constructor(param: string | any); toJSON(): any; toString(): string; }