import { Price } from './Price';
/** Pricing breakdown with and without tax */
export interface Pricing {
    /** Price excluding tax before any promotion */
    basePriceWithoutTax: Price;
    /** Total reduction applied by promotions, as a positive amount (0 if none) */
    discount: Price;
    /** Final price including tax, after any reduction */
    finalPriceWithTax: Price;
    /** Final price excluding tax, after any reduction */
    finalPriceWithoutTax: Price;
    /** Tax amount on the final price */
    tax: Price;
}
//# sourceMappingURL=Pricing.d.ts.map