import type React from "react"; type ThemeColorObject = { textColor?: string; background?: string; logoColor?: "white" | "blue"; }; type MenuData = { primaryMenu?: any[]; secondaryMenu?: any[]; }; type BaseMobileMenuProps = { menuData: MenuData; subtext?: string; closeMenu?: React.MouseEventHandler; themeColorObject?: ThemeColorObject; showNulogyLogo?: boolean; }; /** @deprecated The BrandedNavBar component is deprecated. Use the Navigation component instead. */ declare const MobileMenu: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit> & string & Omit<({ menuData, closeMenu, subtext, themeColorObject, showNulogyLogo, ...props }: BaseMobileMenuProps) => import("react/jsx-runtime").JSX.Element, keyof React.Component>; export default MobileMenu;