/**----------------------------------------------------------------------------------------- * Copyright © 2024 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { EventEmitter } from '@angular/core'; import { LocalizationService } from "@progress/kendo-angular-l10n"; import { ColumnMenuItemBase } from './column-menu-item-base'; import { SVGIcon } from '@progress/kendo-svg-icons'; import * as i0 from "@angular/core"; /** * Represents the column-menu item for editing column filters in the TreeList. * * The component can be placed inside a [`ColumnMenuTemplate`]({% slug api_treelist_columnmenutemplatedirective %}) directive. * * To register the component as a known column menu item, set the [`ColumnMenuService`]({% slug api_treelist_columnmenuservice %}) * that is passed by the template to the service input of the `kendo-treelist-columnmenu-filter` component. * */ export declare class ColumnMenuFilterComponent extends ColumnMenuItemBase { localization: LocalizationService; /** * Fires when the content is expanded. */ expand: EventEmitter; /** * Fires when the content is collapsed. */ collapse: EventEmitter; /** * Specifies if the content is expanded. * @default false */ expanded: boolean; /** * @hidden */ actionsClass: string; filterIcon: SVGIcon; constructor(localization: LocalizationService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }