/**
 * Base class for all JSON Patch errors.
 */
export declare class JSONPatchError extends Error {
    readonly message: string;
    constructor(message: string);
}
export declare class JSONPatchTestFailure extends JSONPatchError {
    readonly message: string;
    constructor(message: string);
}
