/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { MenuItemInternalModel } from '../models/MenuItemModel';
import { PopupAnimation } from '@progress/kendo-react-popup';
import { BaseMenuItemInternalProps } from './../BaseMenuItemInternalProps';
import * as React from 'react';
/**
 * @hidden
 */
export interface MenuItemInternalsListProps extends BaseMenuItemInternalProps {
    items: MenuItemInternalModel[];
    parentItemId?: string;
    className: string;
    animate?: boolean | PopupAnimation;
    role?: string;
    'aria-orientation'?: 'vertical';
}
/**
 * @hidden
 */
export declare const MenuItemInternalsList: (props: MenuItemInternalsListProps) => React.JSX.Element;
/**
 * @hidden
 */
export interface MenuItemInternalProps extends BaseMenuItemInternalProps {
    item: MenuItemInternalModel;
    animate?: boolean | PopupAnimation;
}
/**
 * @hidden
 */
export declare const MenuItemInternal: (props: MenuItemInternalProps) => React.JSX.Element;
