import { Inference, StringDict, Page } from "../../../../v1/parsing/common/index.js";
import { IdCardV2Document } from "./idCardV2Document.js";
import { IdCardV2Page } from "./idCardV2Page.js";
/**
 * Carte Nationale d'Identité API version 2 inference prediction.
 */
export declare class IdCardV2 extends Inference {
    /** The endpoint's name. */
    endpointName: string;
    /** The endpoint's version. */
    endpointVersion: string;
    /** The document-level prediction. */
    prediction: IdCardV2Document;
    /** The document's pages. */
    pages: Page<IdCardV2Page>[];
    constructor(rawPrediction: StringDict);
}
