import { Key } from 'react'; import { ChangEventHandler, TabListProps } from './types'; export declare const StatefulTabsContext: import("react").Context<{ activeTabId: Key; onChange: ChangEventHandler; }>; export declare const useStatefulTabsContext: () => { activeTabId: Key; onChange: ChangEventHandler; }; export declare const TabListContext: import("react").Context>; export declare const useTabListContext: () => Pick;