/**
* Information related to the software of the POI System which manages the Sale to POI protocol. In a session allows identifying the product features of a POI System.
*/
export declare class POISoftware {
    /**
    * Identification of the Manufacturer. Sent in the Login Request (Response) to identify the Sale System (POI System) manufacturer during the session.
    */
    "ManufacturerID": string;
    /**
    * Name of the software product. Sent in the Login Request (Response) to identify the Sale System (POI System) product name during the session.
    */
    "ApplicationName": string;
    /**
    * Version of the software product. Sent in the Login Request (Response) to identify the version of the Sale System (POI System) product software during the session.
    */
    "SoftwareVersion": string;
    /**
    * Certification code of the software which manages the Sale to POI protocol. Sent in the Login Request (Response) to get the certification code of the Sale System (POI System) product software. This code can be a software checksum or any number associated with the software.
    */
    "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();
}
