/**----------------------------------------------------------------------------------------- * 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 fixed group header content. To define the fixed group template, nest an `` tag * with the `kendoFixedGroupTemplate` directive inside the component tag. The template context is * set to the current component. To get a reference to the current data item, use the `let-groupName` directive. * * - [Using `FixedGroupTemplate` with the AutoComplete](https://www.telerik.com/kendo-angular-ui/components/dropdowns/autocomplete/templates#fixed-group-header-template) * - [Using `FixedGroupTemplate` with the ComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/combobox/templates#fixed-group-header-template) * - [Using `FixedGroupTemplate` with the MultiColumnComboBox](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multicolumncombobox/templates#fixed-group-header-template) * - [Using `FixedGroupTemplate` with the DropDownList](https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/templates#fixed-group-header-template) * - [Using `FixedGroupTemplate` with the MultiSelect](https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/templates#fixed-group-header-template) * * @example * ```ts * import { groupBy } from '@progress/kendo-data-query'; * _@Component({ * selector: 'my-app', * template: ` * * * Food type: {{groupName}} option * * * ` * }) * class AppComponent { * public data = [ * { name: "Pork", category: "Food", subcategory: "Meat" }, * { name: "Pepper", category: "Food", subcategory: "Vegetables" }, * { name: "Beef", category: "Food", subcategory: "Meat" } * ]; * public groupedData = groupBy(this.data, [{field: "subcategory"}]); * } * ``` */ export declare class FixedGroupTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }