/**----------------------------------------------------------------------------------------- * 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"; /** * Represents the group-header column template of the Grid, allowing customization of group header content. * To define the group header template, nest an `` tag with the `kendoGridGroupHeaderColumnTemplate` * directive inside a ``. [See example](https://www.telerik.com/kendo-angular-ui/components/grid/grouping/templates#header-column-template). * * The template context is set to the current data item and provides the following fields: * - `group`—The current group item. * - `field`—The name of the field used for grouping. * - `value`—The current group value. * - `aggregates`—Aggregate values for the current group. * * @example * ```html * * * * Count: {{ aggregates.Discontinued.count }} * * * * ``` */ export declare class GroupHeaderColumnTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }