/**----------------------------------------------------------------------------------------- * Copyright © 2024 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { EventEmitter, OnChanges } from '@angular/core'; import { ColumnMenuItemContentTemplateDirective } from './column-menu-item-content-template.directive'; import { SVGIcon } from '@progress/kendo-svg-icons'; import * as i0 from "@angular/core"; /** * Represents an item that can be placed inside a * [`ColumnMenuTemplate`]({% slug api_treelist_columnmenutemplatedirective %}) directive. * * @example * ```html * * * * * * ``` */ export declare class ColumnMenuItemComponent implements OnChanges { /** * Fires when the item is clicked. */ itemClick: EventEmitter; /** * Fires when the content is expanded. */ expand: EventEmitter; /** * Fires when the content is collapsed. */ collapse: EventEmitter; /** * Specifies the name of the [font icon]({% slug icons %}#toc-list-of-font-icons) * that will be rendered for the item. */ icon: string; /** * Specifies the name of the [SVG icon]({% slug svgicon_list %}) * that will be rendered for the item. */ svgIcon: SVGIcon; /** * Specifies the item text. */ text: string; /** * Specifies if the item is selected. */ selected: boolean; /** * Specifies if the item is disabled. */ disabled: boolean; /** * Specifies if the item is expanded. */ expanded: boolean; contentTemplate: ColumnMenuItemContentTemplateDirective; contentState: string; ngOnChanges(changes: any): void; /** * @hidden */ onClick(e: any): void; private updateContentState; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }