import { type Options as ExecaOptions } from "execa"; export interface RunResult { stdout: string; stderr: string; exitCode: number; } export declare function run(command: string, args: string[], options?: ExecaOptions): Promise; export declare function commandExists(cmd: string): Promise; //# sourceMappingURL=shell.d.ts.map