import { Price } from './Price';
/** Prices of an order */
export interface OrderPrices {
    /** Price before reduction application */
    originalWithoutTax?: Price;
    /** Price concerning the reduced amount */
    reduction?: Price;
    /** Tax amount */
    tax: Price;
    /** Price with tax */
    withTax: Price;
    /** Price without tax */
    withoutTax: Price;
}
//# sourceMappingURL=OrderPrices.d.ts.map