import { OnInit } from '@angular/core'; import { FormControl } from '@angular/forms'; import { TranslateService } from '@ngx-translate/core'; export declare class ControlFieldErrorMessageComponent implements OnInit { private translateService; controlName: string; control: FormControl; constructor(translateService: TranslateService); ngOnInit(): void; get errorMessage(): string; }