import React from 'react'; import { SelectFieldBaseProps } from '../../types/selectField'; /** * Select field (dropdown) that does not rely on native browser or mobile implementations. * * Utilizes [useSelect](https://react-spectrum.adobe.com/react-aria/useSelect.html) from React Aria * and [useSelectState](https://react-spectrum.adobe.com/react-stately/useSelectState.html) from * React Stately. */ declare const SelectFieldBase: React.ForwardRefExoticComponent>; export default SelectFieldBase;