/// import './search.scss'; export interface ISearchInputProps { id: string; value: string; onChange?: (event: any) => void; disabled?: boolean; placeholder?: string; title?: string; shouldShowSearchText?: boolean; } export declare const SearchInput: (props: ISearchInputProps) => JSX.Element;