export declare const FIAT_CURRENCIES: readonly ["USD", "EUR"]; export type FiatCurrency = (typeof FIAT_CURRENCIES)[number]; export interface CurrencyExchangeRate { name: string; symbol: string; currency: string; decimals: number; rateUSD: number; } export declare const currencyRateUSD: CurrencyExchangeRate; export declare const nonUsdCurrencies: { name: string; symbol: string; currency: string; decimals: number; }[];