import { ComboBoxProps } from '@react-types/combobox'; import { ComboBoxState } from '@react-stately/combobox'; import { RefObject } from 'react'; import { KeyboardDelegate } from '@react-types/shared'; import { TextInput, View, Pressable, Touchable } from 'react-native'; interface AriaComboBoxProps extends ComboBoxProps { /** The ref for the input element. */ inputRef: RefObject; /** The ref for the list box popover. */ popoverRef: RefObject; /** The ref for the list box. */ listBoxRef: RefObject; /** The ref for the list box popup trigger button. */ buttonRef: RefObject; /** An optional keyboard delegate implementation, to override the default. */ keyboardDelegate?: KeyboardDelegate; } interface ComboBoxAria { /** Props for the combo box menu trigger button. */ buttonProps: any; /** Props for the combo box input element. */ inputProps: any; /** Props for the combo box menu. */ listBoxProps: any; /** Props for the combo box label element. */ labelProps: any; } /** * Provides the behavior and accessibility implementation for a combo box component. * A combo box combines a text input with a listbox, allowing users to filter a list of options to items matching a query. * @param props - Props for the combo box. * @param state - State for the select, as returned by `useComboBoxState`. */ export declare function useComboBox(props: AriaComboBoxProps, state: ComboBoxState): ComboBoxAria; export {}; //# sourceMappingURL=useComboBox.d.ts.map