import { OnInit } from '@angular/core'; import { FormControl } from '@angular/forms'; export declare class FormErrorComponent implements OnInit { control: FormControl; errors: any; defaultErrors: { required: string; minlength: string; email: string; }; constructor(); ngOnInit(): void; }