import type Dockerode from "dockerode"; export interface DockerExecResult { exitCode: number | null; stderr: Buffer; stdout: Buffer; } export declare function runDockerExec(container: Dockerode.Container, command: readonly string[], options?: { cwd?: string; maxOutputBytes?: number; stdin?: string | Uint8Array; timeoutMs?: number; }): Promise;