/**----------------------------------------------------------------------------------------- * 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 { ColumnInfoService } from '../common/column-info.service'; import { ColumnMenuItemBase } from './column-menu-item-base'; import { SVGIcon } from '@progress/kendo-svg-icons'; import { ContextService } from '../common/provider.service'; import * as i0 from "@angular/core"; /** * Represents the column-menu item for selecting columns in the Grid. [See example](https://www.telerik.com/kendo-angular-ui/components/grid/accessories/column-menu#column-chooser-item). * * Place this component inside a [`ColumnMenuTemplate`](https://www.telerik.com/kendo-angular-ui/components/grid/api/columnmenutemplatedirective) directive. * To register it as a column menu item, set the [`ColumnMenuService`](https://www.telerik.com/kendo-angular-ui/components/grid/api/columnmenuservice) passed by * the template to the `service` input of the `kendo-grid-columnmenu-chooser` component. [See example](https://www.telerik.com/kendo-angular-ui/components/grid/accessories/column-menu#customizing-the-content). * * @example * ```html * * * * * * ``` * @example * ```html * * * * * * ``` */ export declare class ColumnMenuChooserComponent extends ColumnMenuItemBase { ctx: ContextService; private columnInfoService; private hostElement; /** * Fires when the content expands. */ expand: EventEmitter; /** * Fires when the content collapses. */ collapse: EventEmitter; /** * Specifies if the content is expanded. * @default false */ expanded: boolean; /** * @hidden */ isLast: boolean; /** * @hidden */ actionsClass: string; get columns(): any; columnsIcon: SVGIcon; constructor(ctx: ContextService, columnInfoService: ColumnInfoService, hostElement: ElementRef); /** * @hidden */ onCollapse(): void; /** * @hidden */ onExpand(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }