import type { RunInSandboxOptions, SandboxResult } from './types.js'; /** * Evaluates `code` in a fresh, isolated QuickJS VM bounded by memory, stack, and time. The VM * starts pristine — no host access of any kind. Consumers shape the guest realm through * `setupContext` (see e.g. `setupHostFunctions`); the time bounds live in `createExecutionBudget`. */ export declare function runInSandbox(code: string, options?: RunInSandboxOptions): Promise; //# sourceMappingURL=sandbox.d.ts.map