import type { Tool } from '../core/tools/tool-types.js'; import { type RunProcessOptions, type RunProcessResult } from '../utils/run-process.js'; export interface DockerExecConfig { image?: string; workspaceDir: string; timeoutMs?: number; runProcessImpl?: (cmd: string, opts: RunProcessOptions) => Promise; } export declare function createDockerExecTool(config: DockerExecConfig): Tool; //# sourceMappingURL=docker-exec.d.ts.map