import { Response } from "./response";
/**
* Content of the Card Reader APDU Response message. It contains the result of the requested service, APDU response sent by the chip of the card in response to the APDU request.
*/
export declare class CardReaderAPDUResponse {
    "Response": Response;
    /**
    * Data field of the APDU command (Lc + Data).
    */
    "APDUData"?: string;
    /**
    * Status of a smartcard response to a command (SW1-SW2).
    */
    "CardStatusWords": 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();
}
