reakit
Version:
Toolkit for building accessible rich web apps with React
9 lines (8 loc) • 930 B
TypeScript
import { SealedInitialState } from "reakit-utils/useSealedState";
import { unstable_ComboboxListState as ComboboxListState, unstable_ComboboxListActions as ComboboxListActions, unstable_ComboboxListInitialState as ComboboxListInitialState } from "./ComboboxListState";
import { ComboboxPopoverState, ComboboxPopoverActions, ComboboxPopoverInitialState } from "./__utils/ComboboxPopoverState";
export declare function unstable_useComboboxState(initialState?: SealedInitialState<unstable_ComboboxInitialState>): unstable_ComboboxStateReturn;
export declare type unstable_ComboboxState = ComboboxPopoverState & ComboboxListState;
export declare type unstable_ComboboxActions = ComboboxPopoverActions & ComboboxListActions;
export declare type unstable_ComboboxInitialState = ComboboxPopoverInitialState & ComboboxListInitialState;
export declare type unstable_ComboboxStateReturn = unstable_ComboboxState & unstable_ComboboxActions;