/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { TemplateRef } from '@angular/core'; import * as i0 from "@angular/core"; /** * Renders the column cell content of the MultiColumnComboBox component. * * To define a column cell template, nest an `` tag with the `kendoMultiColumnComboBoxColumnCellTemplate` directive inside the [``](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/comboboxcolumncomponent) tag. * [See example](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/templates). * * The context variables are: * - `let-dataItem="dataItem"` (`any`)—The current data item. Also available as the implicit context variable. * - `let-column="column"` ([`ColumnComponent`](https://www.telerik.com/kendo-angular-ui/components/dropdowns/api/comboboxcolumncomponent))—The current column configuration object. * * @example * ```html * * * * {{ dataItem[column.field] }} * * * * ``` */ export declare class ColumnCellTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }