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