import { Type_info } from '../generated/stdlib'; import { CoinInfo } from '../generated/coin_list/coin_list'; import { App } from '../generated'; export declare class CoinListClient { app: App; fullnameToCoinInfo: Record; symbolToCoinInfo: Record; coinList: CoinInfo[]; constructor(app: App); hasTokenType(tokenType: Type_info.TypeInfo): boolean; getCoinInfoList(): CoinInfo[]; getCoinInfoBySymbol(symbol: string): CoinInfo; getCoinInfoByType(tokenType: Type_info.TypeInfo): CoinInfo; getCoinInfoByFullName(fullName: string): CoinInfo; static load(app: App): Promise; private buildCache; } //# sourceMappingURL=index.d.ts.map