import { ValidationErrors } from '@angular/forms';
export declare class FormPropertyErrors {
    readonly errors: {
        [path: string]: ValidationErrors;
    };
    constructor(errors: {
        [path: string]: ValidationErrors;
    });
    getMessages(): string[];
}
