@base-ui-components/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 • 499 B
TypeScript
import * as React from 'react';
export interface CompositeRootContext {
highlightedIndex: number;
onHighlightedIndexChange: (index: number, shouldScrollIntoView?: boolean) => void;
highlightItemOnHover: boolean;
}
export declare const CompositeRootContext: React.Context<CompositeRootContext | undefined>;
export declare function useCompositeRootContext(optional: true): CompositeRootContext | undefined;
export declare function useCompositeRootContext(optional?: false): CompositeRootContext;