import { SidebarTab } from '../../widgets/control-block/types'; import { default as React } from 'react'; export declare const TableSidebar: React.FC<{ children?: React.ReactNode; activeTabId: string | null; $borderRightBottomRadiusRounded?: boolean | undefined; $borderRightTopRadiusRounded?: boolean | undefined; sidebarTabs: SidebarTab[]; defaultActiveTabId?: string; activeTabState?: [ string | null, React.Dispatch> ]; onActiveTabChange?: (tabId: string | null, tab?: SidebarTab) => void; }>;