import type { DebuggerState } from "../../debugger/debuggerState.js"; /** * Creates a mock RuntimeContext for unit tests. * Includes all methods that runtime code calls on the context. */ export declare function makeMockCtx(opts?: { debuggerState?: DebuggerState | null; }): any;