/**----------------------------------------------------------------------------------------- * 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 column header cell template of the Grid * ([more information and example](https://www.telerik.com/kendo-angular-ui/components/grid/columns/templates#header-template)). * Use this directive to customize the table header cell for a column. * To define a header template, nest an `` tag with the * `kendoGridHeaderTemplate` directive inside the `` tag. * * The template context is set to the current column. The following additional fields are available: * * `column`—An instance of the [`ColumnComponent`](https://www.telerik.com/kendo-angular-ui/components/grid/api/columncomponent) option. * * `columnIndex`—The current column index. * * @example * ```typescript * * * * Header for {{ column.field }} (index: {{ columnIndex }}) * * * * ``` */ export declare class HeaderTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }