import { MultiSendContract } from '@biconomy-sdk-dev/core-types'; import { MultiSendContractV100 as MultiSend_TypeChain, MultiSendContractV100Interface } from '../../../../typechain/src/ethers-v5/v1.0.0/MultiSendContractV100'; import { Contract } from '@ethersproject/contracts'; import { Interface } from '@ethersproject/abi'; declare class MultiSendEthersContract implements MultiSendContract { contract: MultiSend_TypeChain; constructor(contract: MultiSend_TypeChain); getAddress(): string; getContract(): Contract; getInterface(): Interface; encode: MultiSendContractV100Interface['encodeFunctionData']; } export default MultiSendEthersContract;