type ExecResult = { code: number; stdout: string; stderr: string; signal: NodeJS.Signals | null; timedOut: boolean; durationMs: number; script: string; }; export declare function execNode(entryAbsPath: string, args: string[], cwd: string, timeoutMs: number): Promise; export declare function runScriptsPipeline(scriptsDir: string, workDir: string, scriptNames?: string[]): Promise; export {}; //# sourceMappingURL=script-runner.d.ts.map