import type { TraceResult } from "../types.js"; /** * Load a trace from a JSON string (e.g. a file the consumer has read). The * JSON should match the LoadObjectInput shape: an object with `callFrame` and * optionally `structLogs`, `txHash`, `blockNumber`. Throws on invalid JSON or * missing `callFrame`. * * We accept a string rather than a path so the SDK stays node/browser-agnostic * — consumers can use `fs.readFile`, `fetch`, or anything that produces JSON. */ export declare function loadTraceFromFile(json: string): TraceResult; //# sourceMappingURL=loadTraceFromFile.d.ts.map