import { Instalment } from "./instalment";
import { PaymentInstrumentData } from "./paymentInstrumentData";
import { PaymentType } from "./paymentType";
import { TransactionIDType } from "./transactionIDType";
export declare class PaymentData {
    "PaymentType"?: PaymentType;
    /**
    * Indicates if the payment of the Sale transaction is split. Allows the POI to decline payment means that cannot accept split payment.
    */
    "SplitPaymentFlag"?: boolean;
    /**
    * Requested validity date for the reservation. Allows a specific period for the reservation according to the need of the Merchant for the first reservation and the reservation updates as well.
    */
    "RequestedValidityDate"?: string;
    "CardAcquisitionReference"?: TransactionIDType | null;
    "Instalment"?: Instalment | null;
    "PaymentInstrumentData"?: PaymentInstrumentData | null;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
export declare namespace PaymentData {
}
