export interface RunCommandOptions { cwd?: string; env?: NodeJS.ProcessEnv; timeout?: number; onLine?: (line: string, stream: 'stdout' | 'stderr') => void; } export interface RunCommandResult { code: number; stdout: string; stderr: string; timedOut: boolean; } export declare function runCommand(cmd: string, args: string[], opts?: RunCommandOptions): Promise; //# sourceMappingURL=run-command.d.ts.map