import { PropsWithChildrenAndClassName } from '../../types'; /** * **JSON-format type: menuRoot** * * Describes a tree of `menuEntry` components. Is typically rendered as a list, where each level of nesting increases the indentation (similar to lists-within-lists in HTML). * * Children: `[menuEntry+]` * * _Note: Pre-iCup_ * * @param className * @param props * @constructor */ declare function MenuRoot({ className, ...props }: PropsWithChildrenAndClassName): import("react/jsx-runtime").JSX.Element; export { MenuRoot };