export type ArchType = "aarch64" | "x86_64"; export declare const ARCH_CONFIG: Record; export interface VmConfig { arch: ArchType; memoryMB: number; cpus?: number; diskImage?: string; kernel?: string; kernelArgs?: string; } export type VmState = "creating" | "running" | "paused" | "shutdown" | "crashed" | "destroyed"; export interface VmInstance { id: string; config: VmConfig; state: VmState; pid: number; qmpSocketPath: string; createdAt: Date; consoleBuffer: string[]; } //# sourceMappingURL=types.d.ts.map