/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ElementRef, Renderer2 } from '@angular/core'; import { SVGIcon } from '@progress/kendo-svg-icons'; import { PivotGridDataService } from '../data-binding/pivotgrid-data.service'; import { CellTemplateDirective } from './templates/pivotgrid-cell-template.directive'; import { ValueCellTemplateDirective } from './templates/pivotgrid-value-cell-template.directive'; import { RowHeaderCellTemplateDirective } from './templates/pivotgrid-row-header-cell-template.directive'; import { ColumnHeaderCellTemplateDirective } from './templates/pivotgrid-column-header-cell-template.directive'; import * as i0 from "@angular/core"; /** * @hidden */ export declare class PivotGridCellDirective { private hostEl; private renderer; private dataService; cellClass: boolean; kendoPivotGridCell: any; tableType: string; rowIndex: number; colIndex: number; customCellTemplate: CellTemplateDirective; valueCellTemplate: ValueCellTemplateDirective; rowHeaderCellTemplate: RowHeaderCellTemplateDirective; columnHeaderCellTemplate: ColumnHeaderCellTemplateDirective; get isNotProvidedCellTemplatePerType(): boolean; get expanded(): boolean; chevronUpSVGIcon: SVGIcon; chevronDownSVGIcon: SVGIcon; constructor(hostEl: ElementRef, renderer: Renderer2, dataService: PivotGridDataService); ngOnInit(): void; handleClick: () => void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }