import { type TabItemProps } from './TabItem'; type TabContextType = { selectedTabId: string | undefined; onSelectedTabIdChange?: (tabId: string) => void; tabs: TabItemProps[]; shouldShowMenu: boolean; setShouldShowMenu?: (shouldShowMenu: boolean) => void; targetDOMNode?: HTMLElement; registerTab?: (tab: TabItemProps) => void; unregisterTab?: (tabId: string) => void; enableAutoUnmount: boolean; }; export declare const TabContext: import("react").Context; export {};