/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { EventEmitter, ElementRef } from '@angular/core'; import { AxisDescriptor } from '@progress/kendo-pivotgrid-common'; import { SVGIcon } from '@progress/kendo-svg-icons'; import { PivotLocalizationService } from '../../localization/pivot-localization.service'; import { ChipMenuItemBase } from './chip-menu-item-base'; import * as i0 from "@angular/core"; /** * @hidden * Represents the component for setting field filters in the PivotGrid. */ export declare class ChipMenuFilterComponent extends ChipMenuItemBase { localization: PivotLocalizationService; private hostElement; /** * Fires when the content is expanded. */ expand: EventEmitter; /** * Fires when the content is collapsed. */ collapse: EventEmitter; /** * Holds current field information. */ chip: AxisDescriptor; /** * Specifies if the content is expanded. */ expanded: boolean; isLast: boolean; actionsClass: string; filterSVGIcon: SVGIcon; constructor(localization: PivotLocalizationService, hostElement: ElementRef); ngAfterViewInit(): void; onCollapse(): void; onExpand(): void; /** * Returns the localized message for a given token */ messageFor(localizationToken: string): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }