import { TrackFormat } from "./trackFormat";
/**
* Magnetic track or magnetic ink characters line. ISO 7813 - ISO 4909. Generic data structure for a card track, used when the magstripe card reader is located on the Sale Terminal, or for magstripe Card Reader device request. The data structure is also used to store the line at the bottom of a bank check.
*/
export declare class TrackData {
    /**
    * Card track number.
    */
    "TrackNumb"?: number;
    "TrackFormat"?: TrackFormat;
    /**
    * Card track content.
    */
    "TrackValue": 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();
}
export declare namespace TrackData {
}
