import { Inference, StringDict, Page } from "../../parsing/common";
import { InternationalIdV2Document } from "./internationalIdV2Document";
/**
 * International ID API version 2 inference prediction.
 */
export declare class InternationalIdV2 extends Inference {
    /** The endpoint's name. */
    endpointName: string;
    /** The endpoint's version. */
    endpointVersion: string;
    /** The document-level prediction. */
    prediction: InternationalIdV2Document;
    /** The document's pages. */
    pages: Page<InternationalIdV2Document>[];
    constructor(rawPrediction: StringDict);
}
