import { ValidationResult } from "../services";
export declare class RuleError extends Error {
    constructor(validationResult: ValidationResult);
    /** The name/type of the error. */
    type: string;
    /** The element that caused the error. */
    element: object;
}
