import type { ValuesOf } from '../../Types/ValuesOf'; /** * `SubMenuMode` - Determines how child menus are displayed for a menu item. * * @public */ export declare const SubMenuMode: { /** * `inline` - Renders child menus inline using an expandable container. */ readonly Inline: "inline"; /** * `popover` - Renders child menus inside a floating popover anchored to the parent item. */ readonly Popover: "popover"; }; /** * @public */ export type SubMenuMode = ValuesOf; //# sourceMappingURL=SubMenuMode.d.ts.map