import type { ExecutableEVMCall, ExecutionError } from '../execution/types'; export type SimulationResponseData = { error?: ExecutionError; receipt: EthersTypes.TransactionReceiptParams; }; declare class BonadocsAPI { baseUrl: string; constructor(url: string); simulateEVMBundle(chainId: number, calls: ExecutableEVMCall[]): Promise; } export declare function getApi(): BonadocsAPI | undefined; export {};