export interface Tab { key: string; title: string; count?: number; items: any[]; renderFunc: (item: any) => void; selected?: () => void; limit?: { rowLimit: number; itemWidth: number; }; }