import type { SandboxRuntimeConfig } from "@anthropic-ai/sandbox-runtime"; /** * Runs a command with a per-call sandbox config. * Expects: command is non-empty and config is fully resolved for this execution. */ export declare function runInSandbox(command: string, config: SandboxRuntimeConfig, options?: { cwd?: string; env?: NodeJS.ProcessEnv; home?: string; timeoutMs?: number; maxBufferBytes?: number; }): Promise<{ stdout: string; stderr: string; }>; //# sourceMappingURL=runtime.d.ts.map