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