import { RpcProvider, Contract, Interface, EvmWallet } from "../types"; export declare class EthersAdapter { rpcProvider(rpc: string): RpcProvider; contract(address: string, abi: any, provider: RpcProvider | EvmWallet): Contract; interface(abi: any): Interface; serializeTransaction(tx: { chainId: number; to: string; data: string; value: string; nonce: number; gasLimit: string; gasPrice?: string; maxPriorityFeePerGas?: string; maxFeePerGas?: string; }): string; }