import { AssetConfig } from '../../types'; /** * Get the token price from the trusted 3rd party services like CoinGecko, CoinMarketCap, etc. * * @param asset - The target asset * @param apiKey - The coingecko api key * @returns The token price in usd. */ export declare const getTokenPriceFromCoingecko: (asset: AssetConfig, apiKey?: string, retries?: number) => Promise; /** * Get the token price from the trusted 3rd party services like CoinGecko, CoinMarketCap, etc. * * @param asset - The target asset * @param apiKey - The coingecko api key * @returns The token price in usd. */ export declare const getHistoricTokenPriceFromCoingecko: (asset: AssetConfig, date: Date, apiKey: string, retries?: number) => Promise; //# sourceMappingURL=coingecko.d.ts.map