import type { SandboxRuntimeConfig } from "@anthropic-ai/sandbox-runtime"; import type { DockerContainerConfig } from "./dockerTypes.js"; export type DockerRunInSandboxOptions = { cwd?: string; env?: NodeJS.ProcessEnv; home: string; timeoutMs?: number; maxBufferBytes?: number; docker: Omit; }; /** * Runs sandbox-runtime inside a per-user Docker container. * Expects: docker image is local and options.home is mounted to /home/. */ export declare function dockerRunInSandbox(command: string, config: SandboxRuntimeConfig, options: DockerRunInSandboxOptions): Promise<{ stdout: string; stderr: string; }>; //# sourceMappingURL=dockerRunInSandbox.d.ts.map