import { SmartWalletFactoryContract, ITransactionResult } from '@biconomy-sdk-dev/core-types'; import { SmartWalletFactoryContractV100 as SmartWalletFactoryContract_TypeChain } from '../../../../typechain/src/ethers-v5/v1.0.0/SmartWalletFactoryContractV100'; import { Interface } from '@ethersproject/abi'; import { Contract } from '@ethersproject/contracts'; declare class SmartWalletFactoryContractEthers implements SmartWalletFactoryContract { contract: SmartWalletFactoryContract_TypeChain; constructor(contract: SmartWalletFactoryContract_TypeChain); getInterface(): Interface; getContract(): Contract; getAddress(): string; setAddress(address: string): void; deployCounterFactualAccount(owner: string, index: number): Promise; deployAccount(owner: string): Promise; getAddressForCounterFactualAccount(owner: string, index: number): Promise; } export default SmartWalletFactoryContractEthers;