import { BigNumber, BigNumberish, Contract } from 'ethers'; import { BaseApiParams, BaseAccountAPI } from './BaseAccountAPI'; export interface BiconomyV1WalletApiParams extends BaseApiParams { factoryAddress?: string; index?: number; } export declare class BiconomyV1WalletAPI extends BaseAccountAPI { factoryAddress?: string; index: number; accountAddress?: string; accountContract?: Contract; factory?: Contract; constructor(params: BiconomyV1WalletApiParams); _getAccountContract(): Promise; getAccountInitCode(): Promise; getNonce(key?: number): Promise; encodeExecute(target: string, value: BigNumberish, data: string): Promise; signUserOpHash(userOpHash: string): Promise; get epView(): import("../contracts").EntryPoint; encodeBatch(targets: string[], values: BigNumberish[], datas: string[]): Promise; }