/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { SVGIcon } from '@progress/kendo-svg-icons'; import { PropType } from 'vue'; /** * The props of the ColumnMenuItem component. */ export interface ColumnMenuItemProps { /** * Triggered on each click on the title. */ onClick?: Function; /** * @hidden */ onMenuitemclick?: Function; /** * The title of the ColumnMenuItem component. */ title: string; /** * The class of the icon rendered next to the title. */ iconClass: string; /** * Defines the name for the icon. */ icon?: string; /** * Defines the svg icon in a Kendo UI for Vue theme. */ svgIcon?: SVGIcon; /** * The selected state of the component. */ selected?: boolean; } /** * @hidden */ declare const ColumnMenuItem: import('vue').DefineComponent; iconClass: PropType; icon: PropType; svgIcon: PropType; selected: PropType; onMenuitemclick: PropType; }>, {}, {}, {}, { onClick(e: any): void; onKeyDown(event: any): void; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { click: any; }, string, import('vue').PublicProps, Readonly; iconClass: PropType; icon: PropType; svgIcon: PropType; selected: PropType; onMenuitemclick: PropType; }>> & Readonly<{ onClick?: (...args: any[] | unknown[]) => any; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { ColumnMenuItem };