import { LoyaltyAccount } from "./loyaltyAccount";
import { POIData } from "./pOIData";
import { PaymentInstrumentData } from "./paymentInstrumentData";
import { Response } from "./response";
import { SaleData } from "./saleData";
/**
* It conveys Information related to the payment and loyalty cards read and processed by the POI System and entered by the Customer. Content of the Card Acquisition Response message.
*/
export declare class CardAcquisitionResponse {
    "Response": Response;
    "SaleData": SaleData;
    "POIData": POIData;
    /**
    * Type of payment card. Brands available for payment by the card and not chosen by the Customer.
    */
    "PaymentBrand"?: Array<string>;
    "PaymentInstrumentData"?: PaymentInstrumentData | null;
    /**
    * Data related to the loyalty System.
    */
    "LoyaltyAccount"?: Array<LoyaltyAccount>;
    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();
}
