export type RunOptions = { cwd?: string; env?: NodeJS.ProcessEnv; quiet?: boolean; allowFailure?: boolean; verbose?: boolean; capture?: boolean; }; export type RunCaptureResult = { stdout: string; stderr: string; status: number | null; }; export declare function run(command: string, args: string[], options: RunOptions & { capture: true; }): Promise; export declare function run(command: string, args: string[], options?: RunOptions): Promise; export declare function printCommand(command: string, args: string[]): void; export declare function printFailureSuggestion(error: unknown): void; //# sourceMappingURL=command-runner.d.ts.map