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