export type AsyncProcessResult = { status: number | null; signal: NodeJS.Signals | null; stdout: string; stderr: string; error?: Error; timedOut?: boolean; }; export type RunProcessOptions = { cwd?: string; env?: NodeJS.ProcessEnv; input?: string; timeoutMs?: number; maxBufferBytes?: number; }; export declare function runProcess(command: string, args?: readonly string[], options?: RunProcessOptions): Promise; export declare function commandExists(command: string, env?: NodeJS.ProcessEnv): Promise;