export type WebsiteNavigationMenuProps = Readonly<{ children?: React.ReactNode; className?: string; /** Landmark label. Radix hardcodes an English "Main", so pass a translated string. */ label?: string; }>; /** A non-panel row entry (e.g. Pricing): wraps the anchor as a Radix Item/Link so it joins the * menu's keyboard/ARIA model (the List expects structured items, not a bare element). */ export declare function WebsiteNavigationLink({ children }: Readonly<{ children: React.ReactElement; }>): import("react").JSX.Element; /** * Desktop nav dropdown on Radix `NavigationMenu`: one shared `Viewport` morphs between panels. * Radix owns open-state, hover, keyboard, focus, and ARIA; this wrapper centers the surface in * the page (see VIEWPORT_CENTER_INSET). */ export declare function WebsiteNavigationMenu({ children, className, label, }: WebsiteNavigationMenuProps): import("react").JSX.Element; //# sourceMappingURL=WebsiteNavigationMenu.d.ts.map