export interface Option { value: string | number, label: string } export interface SelectInputProps { className?: string label?: string onChange: Function placeholder?: string disabled?: boolean options: Option[] value: Option isSearchable?: boolean isClearable?: boolean }