/// interface IProps { notFormControl: boolean; value: string | number; onChange: (changedValue: string | number) => void; shouldTextBeSelected?: boolean; className?: string; autoFocus?: boolean; } declare const Search: (props: IProps) => JSX.Element; export { Search };