import { type IUnitTotals } from '../../types/index.js';
export declare class UnitTotals {
    readonly subtotal: string;
    readonly discount: string;
    readonly tax: string;
    readonly total: string;
    constructor(unitTotals: IUnitTotals);
}
