import React from 'react'; import type { NavPlugin, OrderedNavigationSlot } from './nav-plugin'; export type MenuNavProps = { /** * @deprecated * use @property navPlugins */ navigationSlot?: OrderedNavigationSlot; /** * @deprecated * use @property widgetPlugins */ widgetSlot?: OrderedNavigationSlot; navPlugins?: [string, NavPlugin][]; widgetPlugins?: [string, NavPlugin][]; /** * A className to pass to the secondary nav, i.e dropdown */ secondaryNavClassName?: string; activeTabIndex?: number; alwaysShowActiveTab?: boolean; } & React.HTMLAttributes; export declare function CollapsibleMenuNav({ navigationSlot, widgetSlot, navPlugins, widgetPlugins, className, secondaryNavClassName, activeTabIndex, alwaysShowActiveTab, children, }: MenuNavProps): import("react/jsx-runtime").JSX.Element;