import { InputType } from '../../public-api'; export interface InputI { inputLabel?: string; type?: InputType; value?: string; placeholder?: string; btnIcon?: string; name: string; error?: string; isDisabled?: boolean; }