import { CustomError } from "ts-custom-error";
export declare class MastoDeserializeError extends CustomError {
    readonly contentType: string;
    readonly data: unknown;
    constructor(message: string, contentType: string, data: unknown, options?: ErrorOptions);
}
