/**----------------------------------------------------------------------------------------- * 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 footer cell template of the Grid * ([more information and example](https://www.telerik.com/kendo-angular-ui/components/grid/columns/templates#footer-template)). * Use this directive to customize the table footer cell for a column. * To define a footer template, nest an `` tag with the * [`kendoGridFooterTemplate`](https://www.telerik.com/kendo-angular-ui/components/grid/api/footertemplatedirective) 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. * * For more information about displaying aggregates in the footer of the Grid, * see the article on [aggregates](https://www.telerik.com/kendo-angular-ui/components/grid/grouping/aggregates). * * @example * ```html * * * * {{column.field}}({{columnIndex}}) * * * * ``` */ export declare class FooterTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }