import { JsonRpcProvider } from 'ethers'; interface TransactionTrace { calls: { from: string; to: string; input: string; output: string; value: bigint; gas: bigint; gasUsed: bigint; }[]; } declare function getTransactionTrace(provider: JsonRpcProvider, hash: string): Promise; declare function getBlockTraces(provider: JsonRpcProvider, block: number): Promise | null>; export { TransactionTrace, getBlockTraces, getTransactionTrace }; //# sourceMappingURL=traces.d.ts.map