import { LoyaltyResult } from "./loyaltyResult";
import { POIData } from "./pOIData";
import { PaymentReceipt } from "./paymentReceipt";
import { PaymentResult } from "./paymentResult";
import { Response } from "./response";
import { SaleData } from "./saleData";
/**
* It conveys Information related to the Payment transaction processed by the POI System. Content of the Payment Response message.
*/
export declare class PaymentResponse {
    "Response": Response;
    "SaleData": SaleData;
    "POIData": POIData;
    "PaymentResult"?: PaymentResult | null;
    /**
    * Data related to the result of a processed loyalty transaction. Loyalty cards used with the payment transaction.
    */
    "LoyaltyResult"?: Array<LoyaltyResult>;
    /**
    * Customer or Merchant payment receipt. If the payment receipts are printed by the Sale system and the POI or the Sale does not implement the Print exchange (Basic profile).
    */
    "PaymentReceipt"?: Array<PaymentReceipt>;
    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();
}
