/** * [WHO]: Menubar primitives for app-level commands and nested menu groups. * [FROM]: React, @radix-ui/react-menubar, registry/lib/utils. * [TO]: sparkdesign package consumers; Showcase; CLI registry copies. * [HERE]: registry/basic/menubar.tsx — tokenized shadcn-derived menubar primitive. * * [PROTOCOL]: * 1. Keep this P3 header in sync when the public contract changes. * 2. Update module AGENTS.md (P2) and root AGENTS.md (P1) when boundaries change. * 3. Follow design tokens and explicit type exports. */ import * as React from "react"; import { Menubar as MenubarPrimitive } from "radix-ui"; declare function Menubar({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function MenubarMenu({ ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function MenubarGroup({ ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function MenubarPortal({ ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function MenubarRadioGroup({ ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function MenubarTrigger({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function MenubarContent({ className, align, alignOffset, sideOffset, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function MenubarItem({ className, inset, variant, ...props }: React.ComponentProps & { inset?: boolean; variant?: "default" | "destructive"; }): import("react/jsx-runtime").JSX.Element; declare function MenubarCheckboxItem({ className, children, checked, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function MenubarRadioItem({ className, children, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function MenubarLabel({ className, inset, ...props }: React.ComponentProps & { inset?: boolean; }): import("react/jsx-runtime").JSX.Element; declare function MenubarSeparator({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function MenubarShortcut({ className, ...props }: React.ComponentProps<"span">): import("react/jsx-runtime").JSX.Element; declare function MenubarSub({ ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function MenubarSubTrigger({ className, inset, children, ...props }: React.ComponentProps & { inset?: boolean; }): import("react/jsx-runtime").JSX.Element; declare function MenubarSubContent({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; export { Menubar, MenubarPortal, MenubarMenu, MenubarTrigger, MenubarContent, MenubarGroup, MenubarSeparator, MenubarLabel, MenubarItem, MenubarShortcut, MenubarCheckboxItem, MenubarRadioGroup, MenubarRadioItem, MenubarSub, MenubarSubTrigger, MenubarSubContent, };