import { type IAdjustmentItemTotals } from '../../types/index.js';
export declare class AdjustmentItemTotals {
    readonly subtotal: string;
    readonly tax: string;
    readonly total: string;
    constructor(adjustmentItemTotals: IAdjustmentItemTotals);
}
