import { Cell, ColumnValidationResult, LookupCallColumn, LookupColumnEventMap, LookupColumnModel, LookupEditor, TableRow, ValueField } from '../../index'; /** * This column is a multivalued LookupCallColumn. If editable it opens a popup containing a {@link LookupBox} in order to select multiple values. */ export declare class LookupColumn extends LookupCallColumn implements LookupColumnModel { model: LookupColumnModel; eventMap: LookupColumnEventMap; distinct: boolean; /** @see LookupColumnModel.distinct */ setDistinct(distinct: boolean): void; protected _createEditor(row: TableRow): LookupEditor; protected _updateEditorFromValidCell(field: ValueField, cell: Cell): void; isContentValid(row: TableRow): ColumnValidationResult; protected _formatValue(value: TValue[], row?: TableRow): string | JQuery.Promise; } //# sourceMappingURL=LookupColumn.d.ts.map