/**----------------------------------------------------------------------------------------- * 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 row header cell template of the PivotGrid. Allows customizing the content of the row header cells. * * To define the row header cell template, nest an `` tag with the * `kendoPivotGridRowHeaderCellTemplate` directive inside a `` tag ([see example](https://www.telerik.com/kendo-angular-ui/components/pivotgrid/templates#row-header-cell-template)). * * The template context provides the current cell item and the following additional fields: * - `cellItem`—The current cell item. This is the default template context that you can access with any `let-x` syntax—for example, `let-cellItem`. * - `columnIndex`—The current column index. Use `let-columnIndex="columnIndex"` to access this variable in your template. * - `rowIndex`—The current row index. Use `let-rowIndex="rowIndex"` to access this variable in your template. * - `expanded`—The expanded state of the cell. Use `let-expanded="expanded"` to access this boolean variable in your template. * - `tableType`—The table type identifier. Use `let-tableType="tableType"` to access this variable in your template. * - `text`—The default cell text. Use `let-text="text"` to access this variable in your template. * * @example * ```html * * * Row: {{rowIndex}} * * * ``` */ export declare class RowHeaderCellTemplateDirective { templateRef: TemplateRef; constructor(templateRef: TemplateRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }