import { Inference, StringDict, Page } from "../../../parsing/common";
import { IndianPassportV1Document } from "./indianPassportV1Document";
/**
 * Passport - India API version 1 inference prediction.
 */
export declare class IndianPassportV1 extends Inference {
    /** The endpoint's name. */
    endpointName: string;
    /** The endpoint's version. */
    endpointVersion: string;
    /** The document-level prediction. */
    prediction: IndianPassportV1Document;
    /** The document's pages. */
    pages: Page<IndianPassportV1Document>[];
    constructor(rawPrediction: StringDict);
}
