import React from 'react'; import { IVerticalNavigationItemProps } from '../../../../types'; export interface IVerticalNavigationItemFlyoutMenuProps { label?: string; children?: IVerticalNavigationItemProps[]; isDrawerOpen?: boolean; hasFlyout?: boolean; content?: React.ReactElement; style?: any; dataAttributes?: any; fullHeightFlyout?: boolean; anchorEl?: null | HTMLElement; open?: boolean; setAnchorEl?: any; parentItemRef?: any; setIsFlyoutHovered?: any; } declare const VerticalNavigationItemFlyoutMenu: React.ForwardRefExoticComponent>; export default VerticalNavigationItemFlyoutMenu;