import { FormControl } from '@angular/forms'; import { EventEmitter } from '@angular/core'; import { TYPE_VALUE_FORM } from '../../models/type-value-form.enum'; import { TYPE } from '../../models/type.enum'; import { InBaseFrwComponent } from '../inBaseFrwComponent'; export declare class InputBase extends InBaseFrwComponent { nameId: string; control: FormControl; name: any; _placeholder: string; _maxlenght: any; icon: string; model: any; _minlength: any; _type: TYPE_VALUE_FORM; onClass: string; isDisabled: boolean; _label: string; textDetail: string; colorTextDetail: TYPE; viewTextDetail: boolean; messageInvalidField: boolean; modelChange: EventEmitter<{}>; controlChange: EventEmitter<{}>; clickAction: EventEmitter<{}>; constructor(); getNameId(): string; outputModel(): void; readonly viewMesageDinamicValidation: boolean; readonly classCustom: string; }