import React from 'react'; import { IMobileNavigationItemProps } from './MobileNavigationItem'; export interface IMobileNavigationItemFlyoutMenuProps { label?: string; children?: IMobileNavigationItemProps[]; isDrawerOpen?: boolean; hasFlyout?: boolean; content?: React.ReactElement; style?: any; fullHeightFlyout?: boolean; anchorEl?: null | HTMLElement; open?: boolean; } declare const MobileNavigationItemFlyoutMenu: (props: IMobileNavigationItemFlyoutMenuProps) => React.ReactElement; export default MobileNavigationItemFlyoutMenu;