import { default as MenuBarConfigItem } from './MenuBarConfigItem'; import * as React from 'react'; interface MenuBarSubItemProps { item: MenuBarConfigItem; depth: number; activeChildId?: string | null; expandedItems?: Set; onChildClick?: (childId: string) => void; onToggleChildExpand?: (childId: string) => void; collapseLabel: string; expandLabel: string; maxDepth: number; onDrillDown?: (itemId: string) => void; aggregateChildBadges?: boolean; isVisible?: boolean; } declare const MenuBarSubItem: React.FC; export default MenuBarSubItem; //# sourceMappingURL=MenuBarSubItem.d.ts.map