import type { PublicKey } from "@solana/web3.js"; export interface TokenInfo { symbol: string; name: string; address: string; decimals: number; } export interface Response { reqId: string; code: string; msg: string; data: Array; } export declare function loadTokens(): Promise; export declare function getTokenInfo(address: PublicKey): TokenInfo | undefined; //# sourceMappingURL=tokenList.d.ts.map