import { FC } from "react"; type MainMenuProps = { onWebMapOpenClick?: (willRedirectToSameHost: boolean) => void; }; /** * Wraps the main user area consisting of header with name and role, webmaps dropdown, admin area * (optionally) and account editing. */ declare const MainMenu: FC; export default MainMenu;