/**
 * Currency array
 */
export declare const Currencies: readonly ["AUD", "CAD", "CNY", "EUR", "GBP", "HKD", "JPY", "NZD", "SGD", "USD"];
/**
 * Currency type
 */
export type Currency = (typeof Currencies)[number];
