import { UntypedFormControl } from '@angular/forms'; export interface ElementData { type?: string; label?: string; labelNote?: string; placeholder?: string; validationLabel?: string; disabled?: boolean; showValidation?: boolean; showValidationOnNotTouched?: boolean; hideValidationMessage?: boolean; iconClass?: string; control?: UntypedFormControl; loading?: boolean; showHint?: boolean; maxLength?: number; tooltip?: string; name?: string; required?: boolean; showAsterisk?: boolean; showLabel?: boolean; showLocalLoading?: boolean; labelPosition?: 'before' | 'after'; readonly?: boolean; }