import { BytesLike } from 'ethers'; import { Interface } from '@ethersproject/abi'; import { MultiResult, MultiWrapper } from '../../lib/multi-wrapper'; import Web3 from 'web3'; import { AaveToken } from './types'; export declare const decodeATokenFromReserveData: (result: MultiResult | BytesLike) => string; export declare const fetchTokenList: (web3Provider: Web3, poolAddress: string, poolInterface: Interface, erc20Interface: Interface, multiWrapper: MultiWrapper, blockNumber?: number) => Promise;