import React, { CSSProperties } from 'react'; import { EventType, MenuData } from '../type'; type NavItemProps = { showNavId: string; itemData: MenuData; activeId: string[]; navItemHangerChange: (type: EventType, param: MenuData, isChild?: boolean) => void; styles: { [key: string]: CSSProperties; }; }; declare const NavItem: React.MemoExoticComponent<(props: NavItemProps) => React.JSX.Element>; export default NavItem;