import type { SandboxDockerSettings } from "../../config/types.sandbox.js"; type RequiredDockerConfigKeys = "image" | "containerPrefix" | "workdir" | "readOnlyRoot" | "tmpfs" | "network" | "capDrop"; export type SandboxDockerConfig = Omit & Required>; export {};