import { BigNumber as BigNumberJs } from 'bignumber.js'; import BaseExchangeApi, { CurrencyMapping } from './BaseExchangeApi'; export declare type RateRecord = Record; export declare abstract class StableCoinExchange extends BaseExchangeApi { protected sourceToken: string; protected rates: Record; constructor(sourceToken: string, api: string, currencyMapping: CurrencyMapping); queryExchangeRate(sourceCurrency: string, targetCurrency: string): Promise; }