@base-ui/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
9 lines • 427 B
text/typescript
import * as React from 'react';
export interface TabsListContext {
activateOnFocus: boolean;
registerIndicatorUpdateListener: (listener: () => void) => () => void;
registerTabResizeObserverElement: (element: HTMLElement) => () => void;
tabsListElement: HTMLElement | null;
}
export declare const TabsListContext: React.Context<TabsListContext | undefined>;
export declare function useTabsListContext(): TabsListContext;