import { type FC, type PropsWithChildren } from 'react'; import type { TabsSize, TabsVariant } from '../types'; interface TabsSharedContextProviderProps extends PropsWithChildren { size?: TabsSize; variant?: TabsVariant; } export declare const TabsSharedContextProvider: FC; export {};