/**----------------------------------------------------------------------------------------- * Copyright © 2026 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 { ChipMenuItemContentTemplateDirective } from './chip-menu-item-content-template.directive'; import { SVGIcon } from '@progress/kendo-svg-icons'; import * as i0 from "@angular/core"; /** * @hidden * */ export declare class ChipMenuItemComponent 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](https://www.telerik.com/kendo-angular-ui/components/styling/icons#icons-list) * that will be rendered for the item. */ icon: string; /** * Defines an SVGIcon to be rendered for the column menu items. * The input can take either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one. */ svgIcon: SVGIcon; /** * Specifies the item text. */ text: string; /** * Specifies if the item is selected. */ selected: boolean; /** * Specifies if the item is expanded. */ expanded: boolean; /** * Specified if the item is disabled */ disabled: boolean; contentTemplate: ChipMenuItemContentTemplateDirective; get iconClass(): string; contentState: string; ngOnChanges(changes: any): void; onClick(e: any): void; private updateContentState; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }