import { ComboboxSize, Overflow, SearchState, State, TruncationLocation } from '../types'; export interface ComboboxData { multiselect: boolean; size: ComboboxSize; withIcons: boolean; disabled: boolean; isOpen: boolean; state: State; searchState: SearchState; overflow: Overflow; chipTruncationLocation?: TruncationLocation; chipCharacterLimit?: number; inputValue?: string; popoverZIndex?: number; } export declare const defaultContext: { multiselect: boolean; size: "default"; withIcons: boolean; disabled: boolean; isOpen: boolean; state: "none"; searchState: "unset"; overflow: "expand-y"; }; export declare const ComboboxContext: import("react").Context; //# sourceMappingURL=ComboboxContext.d.ts.map