import type { EnvSanitizationOptions } from "./sanitize-env-vars.js"; type ExecDockerRawOptions = { allowFailure?: boolean; input?: Buffer | string; signal?: AbortSignal; }; export type ExecDockerRawResult = { stdout: Buffer; stderr: Buffer; code: number; }; type DockerSpawnRuntime = { platform: NodeJS.Platform; env: NodeJS.ProcessEnv; execPath: string; }; export declare function resolveDockerSpawnInvocation(args: string[], runtime?: DockerSpawnRuntime): { command: string; args: string[]; shell?: boolean; windowsHide?: boolean; }; export declare function execDockerRaw(args: string[], opts?: ExecDockerRawOptions): Promise; import type { SandboxConfig, SandboxDockerConfig } from "./types.js"; export type ExecDockerOptions = ExecDockerRawOptions; export declare function execDocker(args: string[], opts?: ExecDockerOptions): Promise<{ stdout: string; stderr: string; code: number; }>; export declare function readDockerContainerLabel(containerName: string, label: string): Promise; export declare function readDockerContainerEnvVar(containerName: string, envVar: string): Promise; export declare function readDockerNetworkDriver(network: string): Promise; export declare function readDockerNetworkGateway(network: string): Promise; export declare function readDockerPort(containerName: string, port: number): Promise; export declare function isDockerDaemonUnavailable(stderr: string): boolean; export declare function formatDockerDaemonUnavailableError(stderr: string): string; export declare function ensureDockerImage(image: string): Promise; export declare function dockerContainerState(name: string): Promise<{ exists: boolean; running: boolean; }>; export declare function buildSandboxCreateArgs(params: { name: string; cfg: SandboxDockerConfig; scopeKey: string; createdAtMs?: number; labels?: Record; configHash?: string; includeBinds?: boolean; bindSourceRoots?: string[]; allowSourcesOutsideAllowedRoots?: boolean; allowReservedContainerTargets?: boolean; allowContainerNamespaceJoin?: boolean; envSanitizationOptions?: EnvSanitizationOptions; }): string[]; export declare function ensureSandboxContainer(params: { sessionKey: string; workspaceDir: string; agentWorkspaceDir: string; cfg: SandboxConfig; }): Promise; export {};