import { OnInit } from '@angular/core'; import { NgForm, ValidationErrors } from '@angular/forms'; import { TranslatorService } from '../../common/localization/lang/translator.service'; export declare class FormControlComponent implements OnInit { private trans; private form; label: string; labelKey: string | { key: string; subsystem: string; }; hint: string; hintKey: string | { key: string; subsystem: string; }; showMessages: boolean; showValidationErrors: boolean; private ngCtrl; private ngCtrlElm; private requiredDirective; private _firstErrorReported; constructor(trans: TranslatorService, form: NgForm); ngOnInit(): void; get labelText(): any; get hintText(): any; get errorText(): any; get required(): boolean; localizeError(err: ValidationErrors): string; }