export interface IBInputProps { name?: string; id?: string; type?: string; value?: string; styleType?: 'standard' | 'inline'; className?: string; placeholder?: string; onChange?(value: string): any; errorMessage?: string; error?: boolean; onBlur?(): void; disabled?: boolean; testId?: string; }