/**
* Information related to the software of the Sale System which manages the NEXO Sale to POI protocol.
*/
export declare class SaleSoftware {
    /**
    * Identification of the Manufacturer.
    */
    "ManufacturerID": string;
    /**
    * Name of the software product.
    */
    "ApplicationName": string;
    /**
    * Version of the software product.
    */
    "SoftwareVersion": string;
    /**
    * Certification code of the software which manages the Sale to POI protocol.
    */
    "CertificationCode": 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();
}
