import { PropTypes } from '@zag-js/react'; import { Optional } from '../../types'; import { CollectionItem, ListCollection } from '../collection'; import * as combobox from '@zag-js/combobox'; export interface UseComboboxProps extends Optional, 'dir' | 'getRootNode' | 'collection'>, 'id'> { /** * The collection of items */ collection: ListCollection; } export interface UseComboboxReturn extends combobox.Api { } export declare const useCombobox: (props: UseComboboxProps) => UseComboboxReturn;