export interface IInputSearch {
    name?: string;
    placeholder?: string;
    disableBlur?: boolean;
    onChange: (value: string) => void;
    enableSubmitForm?: boolean;
}
