export type TabOption = { key: string; label: string; badge?: number; }; type TabSidebarProps = { activeTab: string; setActiveTab: (tab: string) => void; tabOptions: TabOption[]; associatedBuildingsCount?: number; attachedFilesCount?: number; }; export default function TabSidebar({ activeTab, setActiveTab, tabOptions, associatedBuildingsCount, attachedFilesCount }: TabSidebarProps): import("react").JSX.Element; export {}; //# sourceMappingURL=TabSidebar.d.ts.map