import { type MainNavigationProps } from './MainNavigation.types'; /** * The component for the main navigation on the normal viewport. * This component must only be used in MainNavigation.tsx, do not export it. */ export declare function BaseMainNavigation({ className, featureShortcut, navigationItems, enableCollapsible, width, customLinkComponent, disableResponsive, isCollapsed: controlledIsCollapsed, onCollapsedChange, }: MainNavigationProps): import("react/jsx-runtime").JSX.Element;