import { BaseCoinInfo } from '../../move/ext/index.js'; import { SuiNetwork } from '../network.js'; export declare function initCoinList(): Promise; export interface SuiCoinInfo { network: string; address: string; symbol: string; name: string; decimals: number; } export declare function whitelistCoins(): Map; export declare function whiteListed(coin: string): boolean; export declare function getCoinInfo(type: string): BaseCoinInfo; export declare function getCoinInfoWithFallback(type: string, network?: SuiNetwork): Promise; export declare function getPrice(coinType: string, timestamp: number): Promise; export declare function calculateValueInUsd(n: bigint, coinInfo: BaseCoinInfo, timestamp: number): Promise; //# sourceMappingURL=coin.d.ts.map