import type { SkillScriptRunResult } from "../skillScriptPath.js"; export type NodeSkillScriptRunner = (params: { skillRoot: string; scriptPath: string; args?: string; cwd: string; }) => Promise; /** * Node 宿主默认脚本执行器(浏览器宿主请自定义 runScript)。 */ export declare function createNodeSkillScriptRunner(options: { defaultCwd: string; }): Promise; //# sourceMappingURL=skillScriptRunner.d.ts.map