export interface SandboxResult { result: unknown; logs: string[]; } /** * Run agent-written JS code in a sandboxed vm context. * * The context includes all @slope-dev/slope exports as top-level names, * all constants, and filesystem helpers pre-bound to `cwd`. * * Code is wrapped in an async IIFE so `return` works naturally. * Console output is captured to a logs buffer. */ export declare function runInSandbox(code: string, cwd: string): Promise; //# sourceMappingURL=sandbox.d.ts.map