/** * @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-react-common'; import * as React from 'react'; /** * Defines the props of the ColumnMenuItem component. */ export interface ColumnMenuItemProps { /** * Fires when the item is clicked. */ onClick?: (event: React.MouseEvent) => void; /** * Indicates that the item is selected when `true`. */ selected?: boolean; /** * Disables the item when `true`. */ disabled?: boolean; /** * Sets the font icon CSS class. */ iconClass?: string; /** * Sets the SVG icon definition. */ svgIcon?: SVGIcon; /** * Sets the item title text. */ title: string; } export declare const ColumnMenuItem: React.FunctionComponent;