import { type CurrencyCode } from '../../enums/index.js';
import { type ITotalAdjustmentsResponse } from '../../types/index.js';
export declare class TotalAdjustments {
    readonly subtotal: string;
    readonly tax: string;
    readonly total: string;
    readonly fee: string;
    readonly earnings: string;
    readonly currencyCode: CurrencyCode;
    readonly retainedFee: string;
    constructor(totalAdjustments: ITotalAdjustmentsResponse);
}
