import { TabListState } from '@react-stately/tabs'; import * as React from 'react'; import { TabsOwnProps } from './Tabs'; export interface TabsContext { tabsProps: TabsOwnProps; tabState: { tabListState: TabListState; setTabListState: (state: TabListState) => void; selectedTab: HTMLElement; collapse: boolean; }; refs: { wrapperRef: React.MutableRefObject; tablistRef: React.MutableRefObject; }; tabPanelProps: { 'aria-labelledby': string; }; } export declare const TabsContext: React.Context;