import { CurrencyCode } from './types'; import type { Currency, Price } from './types'; /** * publ이 지원하는 통화 목록 */ export declare const SUPPORTED_CURRENCIES: readonly [CurrencyCode.KRW, CurrencyCode.USD, CurrencyCode.JPY]; export type SupportedCurrency = typeof SUPPORTED_CURRENCIES[number]; export declare const CURRENCY_BY_LOCALE_MAP: Record; /** * 통화 가격 정책 */ export interface CurrencyPricePolicy { currency: Currency; minPayment: Price; minPromotionPayment?: Price; maxPayment: Price; paymentUnit: number; } /** * 통화별 기본 가격 정책 */ export declare const DEFAULT_CURRENCY_PRICE_POLICIES: Record; /** * 별도의 통화별 가격 정책을 보유한 채널 목록 */ export declare const CHANNEL_CURRENCY_PRICE_POLICIES: Record;