import { Token } from '../Token'; export declare function addressMapToTokenMap({ decimals, symbol, name, icon, }: { decimals: number | string; symbol?: string | undefined; name?: string | undefined; icon?: string | undefined; }, map: Record): { [k: string]: Token; };