import type { ComboboxProps, ItemOptionTransformed } from '../Combobox.types'; type Props = Pick & { items: ItemOptionTransformed[]; textValue: string; currentLabel: string; }; export declare const useComboboxItems: ({ items, textValue, currentLabel, filter }: Props) => { filteredItems: ItemOptionTransformed[]; filteredMaps: { pathMap: import("./usePathMaps").PathMapType; focusedToValueMap: import("./usePathMaps").FocusedToValueMapType; valueToPathMap: import("./usePathMaps").ValueToPathMapType; }; }; export {}; //# sourceMappingURL=useComboboxItems.d.ts.map