import { BigNumber, BigNumberish, Contract } from 'ethers'; import { BaseApiParams, BaseAccountAPI } from './BaseAccountAPI'; export interface SimpleAccountApiParams extends BaseApiParams { factoryAddress?: string; index?: number; } export declare class SimpleAccountAPI extends BaseAccountAPI { factoryAddress?: string; index: number; accountAddress?: string; accountContract?: Contract; factory?: Contract; constructor(params: SimpleAccountApiParams); _getAccountContract(): Promise; getAccountInitCode(): Promise; getCounterFactualAddress(): 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; }