export declare const PRICE_REEF_TOKEN_ID = "reef"; interface TokenPrices { [currenty: string]: number; } export declare const getTokenPrice: (tokenId: string) => Promise; export declare const getTokenListPrices: (tokenIds: string[]) => Promise; export declare const getTokenEthAddressListPrices: (tokenAddressList: string[]) => Promise; export declare const retrieveReefCoingeckoPrice: () => Promise; export {};