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