/// <reference types="react" />
import PropTypes from 'prop-types';
declare function AutocompleteListItem({ text, searchTerm, }: {
    text: string;
    searchTerm: string;
}): string | JSX.Element;
declare namespace AutocompleteListItem {
    var propTypes: {
        text: PropTypes.Requireable<string>;
        searchTerm: PropTypes.Requireable<string>;
    };
}
export default AutocompleteListItem;
//# sourceMappingURL=AutocompleteListItem.d.ts.map