import { BaseHTMLAttributes } from 'react'; /** * **JSON-format type: menuEntry** * * A `menuEntry` has, as its first child, some component (typically a `text` component with the `display` option, but also be for example a `symbol`) that describes this current menu entry, optionally followed by nested `menuEntry` items. * * Children: `[any menuEntry*]` * * _Note: Pre-iCup_ * * @param className * @param children * @constructor */ declare function MenuEntry({ className, children, ...props }: BaseHTMLAttributes): import("react/jsx-runtime").JSX.Element; export { MenuEntry };