import { JsonRpcProvider } from "ethers"; type CallType = "call" | "staticcall" | "delegatecall"; export interface CallTrace { type: CallType; from: string; to: string; input: string; output: string; value?: string; error?: string; calls?: CallTrace[]; } export declare const getTrace: (rpc: JsonRpcProvider, transactionId: string) => Promise; export {};