interface ProcessResult { code: number | null; signal: string | null; stdout: string; stderr: string; } interface ProcessOptions { detached?: boolean; env?: NodeJS.ProcessEnv; maxSize?: number; stdOutMaxSize?: number; stdErrMaxSize?: number; timeout?: number; closeStdin?: boolean; } export declare function runProcessAsync(command: string, args: string[], options?: ProcessOptions): Promise; export {};