import type { ExchangeApi } from 'src/api/pricer/BaseExchangeApi'; declare type ExchangeApiName = 'coinBase' | 'coinGecko' | 'coinCodex' | 'rdocExchange' | 'usdrifExchange' | 'testExchange'; declare const tokenToApi: Record; declare const INTERMEDIATE_CURRENCY = "USD"; declare const exchanges: Map; export { tokenToApi, INTERMEDIATE_CURRENCY, exchanges }; export type { ExchangeApiName };