/** * Bash script execution utilities */ import { BashResult } from '../types/index.js'; /** * Execute a bash script and return parsed JSON result */ export declare function executeBashScript(scriptName: string, args?: string[]): Promise; /** * Execute a bash script with real-time output */ export declare function executeBashScriptWithOutput(scriptName: string, args?: string[]): Promise; //# sourceMappingURL=bash-runner.d.ts.map