///
import { ChildProcess } from "child_process";
import { ExternalServer } from "./external-server";
export declare class VenvDevnet extends ExternalServer {
private command;
private args?;
private vmLang?;
constructor(venvPath: string, host: string, port: string, args?: string[], stdout?: string, stderr?: string, vmLang?: string);
protected spawnChildProcess(): Promise;
protected cleanup(): void;
}