export interface IBModelInputProps { label?: string; model: any; propName: string; type?: string; onChange(model: any): any; errorMessage?: string; error?: boolean; className?: string; disabled?: boolean; placeholder?: string; id?: string; }