export type Environment = { [key in string]: string; }; export type ExecOptions = { workingDir: string; user: string; env: Environment; log: boolean; }; export type ExecResult = { output: string; exitCode: number; }; export declare const CONTAINER_STATUSES: readonly ["created", "restarting", "running", "removing", "paused", "exited", "dead"]; export type ContainerStatus = (typeof CONTAINER_STATUSES)[number];