import { Exception } from '../exceptions';
export declare class ValidatorException extends Exception {
    private validatorName;
    private target;
    private property;
    private children?;
    constructor(validatorName: string, target: Record<string, any>, property: string, message: string, children?: ValidatorException[]);
    get ValidatorName(): string;
    get Target(): Record<string, any>;
    get Property(): string;
    get Message(): string;
    get Children(): ValidatorException[];
}
