import { Response } from "./response";
import { TransactionTotals } from "./transactionTotals";
/**
* Content of the Reconciliation Response message. It conveys Information related to the Reconciliation transaction processed by the POI System.
*/
export declare class GetTotalsResponse {
    "Response": Response;
    /**
    * Identification of the reconciliation period between Sale and POI.
    */
    "POIReconciliationID": number;
    /**
    * Result of the Sale to POI Reconciliation processing. If `Response.Result` is Success.
    */
    "TransactionTotals"?: Array<TransactionTotals>;
    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();
}
