import { TrackData } from "./trackData";
/**
* This data structure could be CMS protected (EnvelopedData). In this case the data structure SensitiveCardData is replaced by the data structure ProtectedCardData of type ContentInformationType. When this data is protected, the exact content is unknown by the Sale System, and might include all the information which are required by an external backup POI Server to make a batch payment transaction in case of problem with the POI System. Sensitive information related to the payment card, entered or read by the Sale System.
*/
export declare class SensitiveCardData {
    /**
    * Primary Account Number.
    */
    "PAN"?: number;
    /**
    * Card Sequence Number. If EntryMode is File, Keyed, or Manual.
    */
    "CardSeqNumb"?: number;
    /**
    * Date after which the card cannot be used. If EntryMode is File.
    */
    "ExpiryDate"?: number;
    /**
    * Magnetic track or magnetic ink characters line. If EntryMode is MagStripe or RFID .
    */
    "TrackData"?: Array<TrackData>;
    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();
}
