import React from 'react';
import { TExtendsHTMLElement } from '../types';
import './index.scss';
interface IProps {
value: string;
onChange: (value: string) => any;
customSearchIcon?: any;
placeholder?: string;
}
declare const SearchInput: React.FC>;
export { SearchInput };