import { type PropsWithChildren } from 'react'; export type DefaultTabContextValue = string | number; export type TabContextValue = { variant: 'line' | 'solid'; disabled: boolean; value?: Value; onChange: (value?: Value) => void; }; export declare function TabProvider({ children, value, }: PropsWithChildren<{ value: TabContextValue; }>): import("react/jsx-runtime").JSX.Element; export declare namespace TabProvider { var displayName: string; } export declare const useTabContextValue: () => TabContextValue | null; //# sourceMappingURL=Tab.context.d.ts.map