/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { BaseMenuItem } from '../models/BaseMenuItem';
/**
 * The properties of the KendoReact MenuItem component ([more information and examples](https://www.telerik.com/kendo-react-ui/components/layout/menu/items/items)).
 */
export interface MenuItemProps extends BaseMenuItem {
}
/**
 * Represents the MenuItem component.
 *
 * @remarks
 * Supported children components are: {@link MenuItem}.
 */
export declare const MenuItem: {
    (_props: MenuItemProps): null;
    displayName: string;
};
