import ExtensibleError from 'extensible-error'; import { ErrorObject } from 'ajv'; export declare class InvalidJsonBodyError extends ExtensibleError { ilpErrorCode: string; httpErrorCode: number; protected validationErrors: ErrorObject[]; constructor(message: string, validationErrors: ErrorObject[]); debugPrint(log: (message: string) => void, validationError?: ErrorObject): void; }