import { OnInit } from '@angular/core'; /** * This component summarizes errors for a specific form. * * It displays a list of errors for each field that isn't valid. By default, * the errors appear as bullet points. **/ export declare class ErrorSpreeComponent implements OnInit { errorMessages: string[]; constructor(); ngOnInit(): void; }