import type { CSSProperties } from "react"; import type { ThemeBaseSize, ThemeSize } from "../theme.types"; import type { ComboboxOptionProps } from "./ComboboxOption/ComboboxOption"; import type { ComboboxStore } from "./use-combobox/use-combobox"; export interface ComboboxContextValue { store: ComboboxStore; onOptionSubmit?: (value: string, optionProps: ComboboxOptionProps) => void; size: ThemeSize; dropdownPadding: CSSProperties["padding"]; optionPadding: ThemeBaseSize; resetSelectionOnOptionHover: boolean | undefined; readOnly: boolean | undefined; } export declare const ComboboxContext: import("react").Context, useComboboxContext: () => ComboboxContextValue;