import { OrderPrice } from './OrderPrice.js';
import './OrderCurrencyCodeEnum.js';
type OrderOrderPrices = {
originalWithoutTax?: OrderPrice | null;
reduction?: OrderPrice | null;
tax?: OrderPrice;
withTax?: OrderPrice;
withoutTax?: OrderPrice;
};
export { OrderOrderPrices };