import type { TabsContextValue } from '../types'; export declare const TabsContext: import("react").Context; /** * Hook to access Tabs context. Must be used within a Tabs component. * * @returns TabsContextValue containing state and methods for tab management * @throws Error if used outside of Tabs context */ export declare const useTabsContext: () => TabsContextValue;