///
import { DebugLogger, ExtraSpawnOptions } from "builder-util";
import { ExecFileOptions, SpawnOptions } from "child_process";
export declare class VmManager {
readonly pathSep: string;
exec(file: string, args: Array, options?: ExecFileOptions, isLogOutIfDebug?: boolean): Promise;
spawn(file: string, args: Array, options?: SpawnOptions, extraOptions?: ExtraSpawnOptions): Promise;
toVmFile(file: string): string;
}
export declare function getWindowsVm(debugLogger: DebugLogger): Promise;