import { CurrencyCodeEnum } from '../../order/CurrencyCodeEnum';
/** Price with its currency and textual representation as returned by domain/order */
export interface Price {
    /** Currency code */
    currencyCode: CurrencyCodeEnum;
    /** Human-readable price with currency, e.g. "6.08 EUR" */
    text: string;
    /** The effective price as a number, e.g. 6.08 */
    value: number;
}
//# sourceMappingURL=Price.d.ts.map