import { FC, ReactNode } from 'react'; import { MenuProps, CollapseProps, ClickAwayListenerProps } from '@mui/material'; import { HeaderNavigationLinkProps } from './HeaderNavigationLink'; export interface HeaderNavigationMenuProps extends HeaderNavigationLinkProps { /** * Content of the menu, can be provided as children as well */ menuItems?: ReactNode; /** * Props applied to menu */ menuProps?: MenuProps; /** * Props applied to ClickAwayListener */ clickAwayListenerProps?: Omit; /** * Props applied to menu on mobile */ collapseProps?: CollapseProps; } /** * HeaderNavigationLink with the integration of the menu */ export declare const HeaderNavigationMenu: FC;