import { KendoComponent } from '../_types/component';
export declare const MENUITEM_CLASSNAME = "k-menu-item";
declare const states: ("active" | "focus" | "disabled" | "selected" | "hover")[];
export type KendoMenuItemProps = {
    text?: string;
    icon?: string;
    iconPosition?: "before" | "after";
    first?: boolean;
    last?: boolean;
    showArrow?: boolean;
    arrowIconName?: string;
    dir?: "rtl" | "ltr";
    children?: React.JSX.Element[];
    /** @aria aria-expanded state for expandable items */
    expanded?: boolean;
};
export type KendoMenuItemState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const MenuItem: KendoComponent<KendoMenuItemProps & KendoMenuItemState & React.HTMLAttributes<HTMLLIElement>>;
export default MenuItem;
