import * as React from 'react'; import type { ComboboxItem } from '../store/ComboboxStore'; export interface ComboboxChipContext { /** * The chip's index in the selection, which is what `Combobox.ChipRemove` * removes. */ index: number; /** * The selected item this chip stands for, if the selection reaches that far. */ item: ComboboxItem | undefined; } export declare const ComboboxChipContext: React.Context; export declare function useComboboxChipContext(): ComboboxChipContext; //# sourceMappingURL=ComboboxChipContext.d.ts.map