/**----------------------------------------------------------------------------------------- * 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"; /** * The directive allows customizing the content of the group header cell in the Grid. * Place an `` with the `kendoGridGroupHeaderTemplate` directive inside `` to set the group header template. ([See example](https://www.telerik.com/kendo-angular-ui/components/grid/grouping/templates#header-template)). * * The template context uses the current data item and provides these fields: * - `group`—The current group item. * - `field`—The field name used for grouping. * - `value`—The current group value. * - `aggregates`—All aggregate values for the current group. * - `index`—The index of the current group. * - `expanded`—A boolean that shows if the group is expanded. * * @example * ```html * * * * {{field}}: {{value}} * * * * ``` */ export declare class GroupHeaderTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }