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