import { BigNumber } from '@ethersproject/bignumber'; import { FallbackGasTankContract } from '@biconomy-sdk-dev/core-types'; import { FallbackGasTankContractV100 as Fallback_Type, FallbackUserOperationStruct } from '../../../../typechain/src/ethers-v5/v1.0.0/FallbackGasTankContractV100'; import { Contract } from '@ethersproject/contracts'; import { Interface } from '@ethersproject/abi'; declare class FallbackGasTankEthersContract implements FallbackGasTankContract { contract: Fallback_Type; constructor(contract: Fallback_Type); getAddress(): string; getContract(): Contract; getBalance(_dappIdentifier: string): Promise; getNonce(_sender: string): Promise; getHash(fallbackUserOp: FallbackUserOperationStruct): Promise; getInterface(): Interface; } export default FallbackGasTankEthersContract;