/**
* It contains the APDU request to send to the chip of the card, and a possible invitation message to display on the CashierInterface or the CustomerInterface. Content of the Card Reader APDU Request message.
*/
export declare class CardReaderAPDURequest {
    /**
    * Class field of the APDU command (CLA). APDU request for Card Reader device request. For specific card like synchronous card, a private value should be used in accordance to ISO 7816- 4 (private range D0-FE).
    */
    "APDUClass": string;
    /**
    * Instruction field of the APDU command (INS).
    */
    "APDUInstruction": string;
    /**
    * Parameter 1 field of the APDU command (P1).
    */
    "APDUPar1": string;
    /**
    * Parameter 2 field of the APDU command(P2).
    */
    "APDUPar2": string;
    /**
    * Data field of the APDU command (Lc + Data).
    */
    "APDUData"?: string;
    /**
    * Expected length of the data field of the APDU response to the command (Le).
    */
    "APDUExpectedLength"?: string;
    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();
}
