import { SidebarTab } from '../../widgets/control-block/types'; interface SidebarTabsProps { tabs: SidebarTab[]; activeTabId: string | null; onTabChange: (id: string) => void; } export declare const SidebarTabs: ({ tabs, activeTabId, onTabChange, }: SidebarTabsProps) => import("react/jsx-runtime").JSX.Element; export {};