import * as React from 'react'; import { CompoundComponentContextValue } from '../useCompound'; import { TabsContextValue } from '../useTabsList/TabsContext'; export type TabPanelMetadata = { id: string | undefined; ref: React.RefObject; }; export type TabsProviderValue = CompoundComponentContextValue & TabsContextValue; export interface TabsProviderProps { value: TabsProviderValue; children: React.ReactNode; } /** * Sets up the contexts for the underlying Tab and TabPanel components. * * @ignore - do not document. */ export declare function TabsProvider(props: TabsProviderProps): import("react/jsx-runtime").JSX.Element;