import * as React from 'react'; export interface ComboboxChipsContext { highlightedChipIndex: number | undefined; setHighlightedChipIndex: React.Dispatch>; chipsRef: React.RefObject>; } export declare const ComboboxChipsContext: React.Context; export declare function useComboboxChipsContext(): ComboboxChipsContext | undefined;