declare const currencyCodeList: readonly string[]; /** * ISO 4217 currency code * * @TJS-type string */ export declare type ICurrencyCode = typeof currencyCodeList[number]; export declare const isICurrencyCode: (d: any) => d is string; export {};