import { default as React } from 'react'; import { SideNavItemProps } from '../sidenav/components/sidenav-item/sidenav-item'; export type MobileNavProps = { navItems: SideNavItemProps[]; ariaLabel: string; linkAs?: C; isOpen: boolean; onClose: () => void; showOverlay?: boolean; id?: string; className?: string; }; export declare const MobileNav: ({ navItems, ariaLabel, linkAs, isOpen, onClose, showOverlay, id, className, }: MobileNavProps) => import("react/jsx-runtime").JSX.Element | null; /** * @deprecated Use `MobileNav` (same component, vendor-neutral name). Kept for * backward compatibility with the `SideNav.Mobile` sub-component alias. */ export declare const SideNavMobile: ({ navItems, ariaLabel, linkAs, isOpen, onClose, showOverlay, id, className, }: MobileNavProps) => import("react/jsx-runtime").JSX.Element | null; /** @deprecated Use `MobileNavProps`. */ export type SideNavMobileProps = MobileNavProps;