react-widgets
Version:
An à la carte set of polished, extensible, and accessible inputs built for React
14 lines • 453 B
TypeScript
/// <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