/// import type { ContractOptions } from "web3-eth-contract"; import type { EventLog } from "web3-core"; import type { EventEmitter } from "events"; import type { Callback, PayableTransactionObject, NonPayableTransactionObject, BlockType, BaseContract } from "./types"; export interface EventOptions { filter?: object; fromBlock?: BlockType; topics?: string[]; } export interface EOAArmorProxy extends BaseContract { constructor(jsonInterface: any[], address?: string, options?: ContractOptions): EOAArmorProxy; clone(): EOAArmorProxy; methods: { admin(): NonPayableTransactionObject; armorModule(): NonPayableTransactionObject; authorize(eoa: string): NonPayableTransactionObject; forward(data: string | number[]): PayableTransactionObject; isAuthorizedEOA(arg0: string): NonPayableTransactionObject; reimburse(): NonPayableTransactionObject; revoke(eoa: string): NonPayableTransactionObject; setArmorModuleAddress(_armorModule: string): NonPayableTransactionObject; }; events: { allEvents(options?: EventOptions, cb?: Callback): EventEmitter; }; }