export interface ExecResult { stdout: string; stderr: string; exitCode: number; } export declare function execAsync(command: string, args: string[], options?: { cwd?: string; stdio?: 'pipe' | 'inherit'; }): Promise; //# sourceMappingURL=exec.d.ts.map