import { CurrencyCodeEnum } from './CurrencyCodeEnum';
/** Price with its currency and textual representation */
export interface Price {
    /** Currency code */
    currencyCode: CurrencyCodeEnum;
    /** Price in microcents */
    priceInUcents?: number;
    /** Textual representation */
    text: string;
    /** The effective price */
    value: number;
}
//# sourceMappingURL=Price.d.ts.map