import { type CurrencyCode } from '../../enums/index.js';
import { type ITransactionTotalsAdjustedResponse } from '../../types/index.js';
export declare class TransactionTotalsAdjusted {
    readonly subtotal: string;
    readonly tax: string;
    readonly total: string;
    readonly grandTotal: string;
    readonly grandTotalTax: string;
    readonly fee: string | null;
    readonly earnings: string | null;
    readonly currencyCode: CurrencyCode;
    readonly retainedFee: string;
    constructor(transactionTotalsAdjusted: ITransactionTotalsAdjustedResponse);
}
