import { IValidationResult } from './interfaces';
export declare class ValidationResult implements IValidationResult {
    protected _errors: any[];
    constructor(errors: any);
    isValid: boolean;
    errors: any[];
    getInvalidProperties(): any;
    getPropertyErrors(propertyName: string): any;
    toJSON(): {
        isValid: boolean;
        errors: any[];
    };
}
