import { type CurrencyCode } from '../../enums/index.js';
import { type ITransactionTotalsResponse } from '../../types/index.js';
export declare class TransactionTotals {
    readonly subtotal: string;
    readonly discount: string;
    readonly tax: string;
    readonly total: string;
    readonly credit: string;
    readonly creditToBalance: string;
    readonly balance: string;
    readonly grandTotal: string;
    readonly grandTotalTax: string;
    readonly fee: string | null;
    readonly earnings: string | null;
    readonly currencyCode: CurrencyCode;
    constructor(transactionTotals: ITransactionTotalsResponse);
}
