import { OnInit } from '@angular/core'; import { OnChanges } from '@angular/core'; import { SimpleChanges } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { FieldIds } from '../../../enums/field-ids.enum'; import { FieldTypes } from '../../../enums/field-types.enum'; export declare class InputTextboxComponent implements OnInit, OnChanges { form: FormGroup; field: any; params: any; properties: any; fieldIds: typeof FieldIds; fieldTypes: typeof FieldTypes; showPassword: boolean; constructor(); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; getOptionAutocomplete(field: any): string; initProperties(): void; getErrors(field: any): string; private getUsrErrors; private getPwdErrors; private getCodeErrors; }