/** * Currency Code Constants * * ISO 4217 currency codes for international currencies. * * @module locale/currencies */ /** * Common currency codes (ISO 4217) */ export declare const CURRENCY_CODES: { readonly USD: "USD"; readonly EUR: "EUR"; readonly GBP: "GBP"; readonly JPY: "JPY"; readonly CHF: "CHF"; readonly CAD: "CAD"; readonly AUD: "AUD"; readonly CNY: "CNY"; readonly INR: "INR"; readonly KRW: "KRW"; readonly SGD: "SGD"; readonly HKD: "HKD"; readonly TWD: "TWD"; readonly THB: "THB"; readonly IDR: "IDR"; readonly MYR: "MYR"; readonly PHP: "PHP"; readonly VND: "VND"; readonly BDT: "BDT"; readonly PKR: "PKR"; readonly LKR: "LKR"; readonly SEK: "SEK"; readonly NOK: "NOK"; readonly DKK: "DKK"; readonly PLN: "PLN"; readonly CZK: "CZK"; readonly HUF: "HUF"; readonly RON: "RON"; readonly BGN: "BGN"; readonly HRK: "HRK"; readonly RSD: "RSD"; readonly ISK: "ISK"; readonly BRL: "BRL"; readonly MXN: "MXN"; readonly ARS: "ARS"; readonly CLP: "CLP"; readonly COP: "COP"; readonly PEN: "PEN"; readonly UYU: "UYU"; readonly VES: "VES"; readonly BOB: "BOB"; readonly PYG: "PYG"; readonly CRC: "CRC"; readonly GTQ: "GTQ"; readonly HNL: "HNL"; readonly NIO: "NIO"; readonly PAB: "PAB"; readonly DOP: "DOP"; readonly JMD: "JMD"; readonly TTD: "TTD"; readonly BBD: "BBD"; readonly AED: "AED"; readonly SAR: "SAR"; readonly QAR: "QAR"; readonly KWD: "KWD"; readonly BHD: "BHD"; readonly OMR: "OMR"; readonly JOD: "JOD"; readonly ILS: "ILS"; readonly TRY: "TRY"; readonly IQD: "IQD"; readonly IRR: "IRR"; readonly LBP: "LBP"; readonly SYP: "SYP"; readonly ZAR: "ZAR"; readonly NGN: "NGN"; readonly EGP: "EGP"; readonly KES: "KES"; readonly GHS: "GHS"; readonly MAD: "MAD"; readonly TND: "TND"; readonly DZD: "DZD"; readonly ETB: "ETB"; readonly TZS: "TZS"; readonly UGX: "UGX"; readonly ZMW: "ZMW"; readonly BWP: "BWP"; readonly MUR: "MUR"; readonly NZD: "NZD"; readonly FJD: "FJD"; readonly PGK: "PGK"; readonly RUB: "RUB"; readonly UAH: "UAH"; readonly BYN: "BYN"; readonly KZT: "KZT"; readonly UZS: "UZS"; readonly AZN: "AZN"; readonly GEL: "GEL"; readonly AMD: "AMD"; readonly BTC: "BTC"; readonly ETH: "ETH"; readonly USDT: "USDT"; readonly USDC: "USDC"; }; /** * Currency metadata */ export declare const CURRENCY_INFO: { /** * Currencies with no decimal places */ readonly NO_DECIMAL_CURRENCIES: readonly ["JPY", "KRW", "VND", "IDR", "CLP", "ISK", "TWD"]; /** * Currencies with 3 decimal places */ readonly THREE_DECIMAL_CURRENCIES: readonly ["BHD", "IQD", "JOD", "KWD", "OMR", "TND"]; /** * Major reserve currencies */ readonly RESERVE_CURRENCIES: readonly ["USD", "EUR", "GBP", "JPY", "CNY"]; /** * G7 currencies */ readonly G7_CURRENCIES: readonly ["USD", "EUR", "GBP", "JPY", "CAD"]; /** * Default decimal places for most currencies */ readonly DEFAULT_DECIMAL_PLACES: 2; }; /** * Type exports */ export type CurrencyCode = (typeof CURRENCY_CODES)[keyof typeof CURRENCY_CODES]; export type CurrencyInfo = (typeof CURRENCY_INFO)[keyof typeof CURRENCY_INFO]; //# sourceMappingURL=currencies.d.ts.map