import { TokenTransferInformation } from 'types/TokenTransferInformation'; declare type TokenTransfersProps = { network: string; walletAddress: string; contractAddress: string; contractABI: any; }; declare const tokenTransfers: ({ network, walletAddress, contractAddress, contractABI, }: TokenTransfersProps) => Promise; export default tokenTransfers;