import type { JSX } from 'react'; export type MobileMenuProps = { className?: string; hideUserProfile?: boolean; }; export declare function MenuMobile({ className, hideUserProfile }: MobileMenuProps): JSX.Element | null;