import React from 'react'; import { MenuItemType } from '../types'; interface ItemProps { item: MenuItemType; toggleSidebar?: () => void; toggleSubMenu: (item: MenuItemType) => void; selectItem: (id: number[]) => void; id: number[]; Link: any; nextJs?: boolean; currentPath: string; } declare const Item: React.FC; export default Item; //# sourceMappingURL=Item.d.ts.map