import { type FC, type ReactElement } from "react"; import type VibeComponentProps from "../../../types/VibeComponentProps"; export interface TabsContextProps extends VibeComponentProps { /** * The index of the currently active tab. */ activeTabId?: number; /** * The child elements representing the tab list and tab panels. */ children?: ReactElement | ReactElement[]; } declare const TabsContext: FC; export default TabsContext;