import { NetworkIdType } from '../Network'; import { TokenPrice } from '../TokenPrice'; export declare class TokenPriceMap extends Map { readonly networkId: NetworkIdType; constructor(networkId: NetworkIdType, initialEntries?: [string, TokenPrice][]); private formatKey; get(address: string): TokenPrice | undefined; has(address: string): boolean; }