UNPKG

@1771technologies/lytenyte-pro

Version:

Blazingly fast headless React data grid with 100s of features.

10 lines (9 loc) 393 B
import { type Dispatch, type SetStateAction } from "react"; interface ComboContext { readonly menu: HTMLDivElement | null; readonly activeEl: HTMLDivElement | null; readonly setActiveEl: Dispatch<SetStateAction<HTMLDivElement | null>>; } export declare const comboContext: import("react").Context<ComboContext>; export declare const useComboContext: () => ComboContext; export {};