import { Exception } from './index'; export declare class ValidationException extends Exception { private field; constructor(field: string, message: string, innerError?: Error); get Field(): string; toJSON(): string; toString(): string; }