/// <reference types="react" />
import { InputProps } from "../input";
interface SearchInputProps extends InputProps {
}
declare function SearchInput(props: SearchInputProps): JSX.Element;
export default SearchInput;
