export interface ExecResult { readonly status: number | null; readonly stdout: string; readonly stderr: string; } export declare const runProcess: (command: string, args: readonly string[], options?: { readonly cwd?: string | undefined; readonly timeoutMs?: number | undefined; }) => Promise; //# sourceMappingURL=exec.d.ts.map