export interface ExecResult { stdout: string; stderr: string; code: number; } export declare function execCommand(cmd: string, opts?: { timeout?: number; cwd?: string; }): Promise; //# sourceMappingURL=shell.d.ts.map