import React from 'react'; import type { TabContextType, TabProviderProps } from './Tabs.types'; export declare const TabContext: React.Context; /** * Custom hook to use the TabContext * Throws an error if used outside of a TabProvider */ export declare const useTab: () => TabContextType; /** * Provides context for Tab components * Manages the current tab state and providing a method to update */ export declare const TabProvider: ({ children, value, style, onClick, }: TabProviderProps) => import("react/jsx-runtime").JSX.Element;