export default SearchInput; declare function SearchInput(props: any): JSX.Element; declare namespace SearchInput { namespace propTypes { const value: PropTypes.Requireable; const onChange: PropTypes.Requireable<(...args: any[]) => any>; const onRequestClose: PropTypes.Requireable<(...args: any[]) => any>; } namespace defaultProps { const value_1: undefined; export { value_1 as value }; export function onChange_1(): void; export { onChange_1 as onChange }; export function onRequestClose_1(): void; export { onRequestClose_1 as onRequestClose }; } } import PropTypes from "prop-types";