/// import { SpawnOptions, SpawnOptionsWithoutStdio } from 'child_process'; export declare const asyncSpawn: (command: string, args: readonly string[], options?: SpawnOptionsWithoutStdio | SpawnOptions) => Promise<{ data: { err: string; ok: string; }; }>; export declare const asyncSpawnShellByPlatform: (args: readonly string[], options?: SpawnOptionsWithoutStdio | SpawnOptions) => Promise<{ data: { err: string; ok: string; }; }>; export declare const Spawn: { asyncSpawn: (command: string, args: readonly string[], options?: SpawnOptionsWithoutStdio | SpawnOptions) => Promise<{ data: { err: string; ok: string; }; }>; asyncSpawnShellByPlatform: (args: readonly string[], options?: SpawnOptionsWithoutStdio | SpawnOptions) => Promise<{ data: { err: string; ok: string; }; }>; };