import type { SandboxConfig } from '@struktoai/mirage-core/runtime/sandbox/config'; /** How to reach the user's running microVM. */ export interface SmolvmConfig extends SandboxConfig { /** * Name of a running machine. You start it yourself (`smolvm machine * create --name mirage` then `smolvm machine start --name mirage`); * the guest needs mirage installed and the workspace served at the * host's mount prefixes. Named explicitly rather than leaning on * smolvm's own "default" machine, so a line never lands in a VM the * config did not choose. */ machine: string; } export declare const SMOLVM_CONFIG_KEYS: readonly string[]; //# sourceMappingURL=config.d.ts.map