import { default as React } from 'react'; import { default as PropTypes } from 'prop-types'; declare const AutocompleteModalItem: { ({ children, value }: { children: any; value: any; }): React.JSX.Element; displayName: string; propTypes: { /** * String representation of the option. * * This value is also used as a typeahead; if a user types "n" while * the Select is open, highlight will move to the first item with a * value starting with `n`. */ value: PropTypes.Validator; /** * Custom typeahead string. By default, typeahead uses `value`. * Use this prop to pass in a custom string you'd like the user to search * against when using typeahead. */ searchValue: PropTypes.Requireable; children: PropTypes.Requireable>; }; }; export default AutocompleteModalItem; //# sourceMappingURL=Item.d.ts.map