import { ChangeEventHandler, ReactElement } from 'react'; export interface ISearchInputProps { value?: string; onChange?: ChangeEventHandler; isLoading?: boolean; placeholder?: string; icon?: ReactElement; isClearable?: boolean; onClear?: () => void; onFocus?: () => void; onBlur?: () => void; onSearchClick?: () => void; onKeyDown?: (event: React.KeyboardEvent) => void; isMobile?: boolean; iconSize?: number; inputHeight?: string; inputWidth?: string; fontSize?: string; }