import type { Dispatch, ReactNode } from 'react'; type ComboboxIdContextType = { activeIndex: number; }; export declare const ComboboxIdContext: import("react").Context; type SetActiveIndexAction = { type: 'SET_ACTIVE_INDEX'; payload: number; }; type ComboboxIdReducerAction = SetActiveIndexAction; export declare const ComboboxIdReducer: (state: ComboboxIdContextType, action: ComboboxIdReducerAction) => ComboboxIdContextType; export declare const ComboboxIdDispatch: import("react").Context>; export declare const ComboboxIdProvider: ({ children }: { children: ReactNode; }) => import("react/jsx-runtime").JSX.Element; export declare function useComboboxIdDispatch(): Dispatch; export declare function useComboboxId(): ComboboxIdContextType; export {}; //# sourceMappingURL=ComboboxIdContext.d.ts.map