export declare class AmountsResp {
    /**
    * Currency of a monetary amount.
    */
    "Currency"?: string;
    /**
    * Amount requested by the Sale for the payment.
    */
    "AuthorizedAmount": number;
    /**
    * Sum of rebates in amount (total amount or line item amount) for all the loyalty programs.
    */
    "TotalRebatesAmount"?: number;
    /**
    * Total amount of financial fees.
    */
    "TotalFeesAmount"?: number;
    /**
    * The cash-back part of the amount requested by the Sale for the payment.
    */
    "CashBackAmount"?: number;
    /**
    * Amount paid for a tip. Allow the printing of the tip on the receipt, and to qualify the tip part of the amount.
    */
    "TipAmount"?: number;
    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();
}
