import { ErrorDetails, ErrorItem, ErrorResponse } from "../../v2/parsing/index.js";
import { MindeeError } from "../../errors/index.js";
/**
 * HTTP error returned by the API.
 */
export declare class MindeeHttpErrorV2 extends MindeeError implements ErrorDetails {
    status: number;
    detail: string;
    title: string;
    code: string;
    errors: ErrorItem[];
    constructor(error: ErrorResponse);
}
