import { Geolocation } from "./geolocation";
import { SensitiveMobileData } from "./sensitiveMobileData";
/**
* Mobile phone is used as a payment instrument for the transaction. Information related to the mobile for the payment transaction.
*/
export declare class MobileData {
    /**
    * Identifies the country of a mobile phone operator. If data available.
    */
    "MobileCountryCode"?: number;
    /**
    * Identifies the mobile phone operator inside a country. If data available.
    */
    "MobileNetworkCode"?: number;
    /**
    * Masked Mobile Subscriber Integrated Service Digital Network. If data available.
    */
    "MaskedMSISDN"?: number;
    "Geolocation"?: Geolocation | null;
    /**
    * Sensitive information related to the mobile phone, protected by CMS. SensitiveMobileData.
    */
    "ProtectedMobileData"?: string;
    "SensitiveMobileData"?: SensitiveMobileData | null;
    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();
}
