export interface Tab { id: string; name: string; path: string; active: boolean; children: Tab[]; count?: number; status?: string; hide?: boolean; tooltip?: boolean; tooltipInfo?: any; }