import { SandboxRuntimeConfig } from "@anthropic-ai/sandbox-runtime"; export type ExecutionMode = "host" | "docker"; export interface ProcessMcpConfig { mode: ExecutionMode; sandbox?: SandboxRuntimeConfig; docker?: { image: string; volumeName: string; containerName: string; useExisting: boolean; }; defaults: { workdir: string; timeoutMs: number; maxTimeoutMs: number; }; } export declare function loadConfig(): ProcessMcpConfig; //# sourceMappingURL=config.d.ts.map