import React from 'react'; export interface IMobileNavigationItemProps { label: string; icon: React.ReactElement; selectedIcon?: React.ReactElement; onClick?: any; isActive?: boolean; children?: IMobileNavigationItemProps[]; isDrawerOpen?: boolean; index?: number; isSecondary?: boolean; hasFlyout?: boolean; fullHeightFlyout?: boolean; content?: React.ReactElement; style?: any; open?: boolean; } declare const MobileNavigationItem: (props: IMobileNavigationItemProps) => React.ReactElement; export default MobileNavigationItem;