export interface TabsContextValue { id: string; value: string | null; orientation?: "horizontal" | "vertical"; loop?: boolean; activateTabWithKeyboard?: boolean; allowTabDeactivation?: boolean; onChange: (value: string | null) => void; getTabId: (value: string) => string; getPanelId: (value: string) => string; variant?: string; color?: string; radius?: string; inverted?: boolean; keepMounted?: boolean; placement?: "right" | "left"; } export declare const TabsContext: import("react").Context, useTabsContext: () => TabsContextValue;