import React from "react"; interface SearchInputProps { placeholder?: string; initialValue?: string; type?: string; className?: string; debounceTime?: number; tabIndex?: number; getInputValueSetter?: (fn: (v: string) => any) => any; onClick?: (e: React.MouseEvent) => any; onDoubleClick?: (e: React.MouseEvent) => any; onMouseDown?: (e: React.MouseEvent) => any; onMouseEnter?: (e: React.MouseEvent) => any; onMouseLeave?: (e: React.MouseEvent) => any; onChange?: (e: React.FormEvent) => any; onChangeAsync?: (e: React.FormEvent) => any; onFocus?: (e: React.FocusEvent) => any; onBlur?: (e: React.FocusEvent) => any; onKeyUp?: (e: React.KeyboardEvent) => any; onKeyDown?: (e: React.KeyboardEvent) => any; onKeyPress?: (e: React.KeyboardEvent) => any; onSubmit?: (e: React.FormEvent) => any; } declare const SearchInput: React.ForwardRefExoticComponent>; declare function SearchInputWrapper(): JSX.Element; export { SearchInputWrapper, SearchInput };