import type { SandboxConfig } from '@struktoai/mirage-core/runtime/sandbox/config'; /** How to reach the user's running container. */ export interface DockerConfig extends SandboxConfig { /** * Id or name of a running container. You start it yourself * (`docker run -d ... sleep infinity`); live FUSE mounts need * `--cap-add SYS_ADMIN --device /dev/fuse` and an image with mirage * installed. */ container: string; } export declare const DOCKER_CONFIG_KEYS: readonly string[]; //# sourceMappingURL=config.d.ts.map