import { z } from "zod/v4"; export declare const name = "shellStart"; export declare const description = "\u4F7F\u7528jun\u4EE3\u7406\u5728\u540E\u53F0\u542F\u52A8\u4E00\u4E2Ashell\u547D\u4EE4\u3002\u6B64\u5DE5\u5177\u4F1A\u7ACB\u5373\u8FD4\u56DE\u4EFB\u52A1pid\uFF0C\u800C\u4E0D\u4F1A\u7B49\u5F85\u547D\u4EE4\u5B8C\u6210\u3002"; export declare const zParams: z.ZodObject<{ command: z.ZodString; args: z.ZodOptional>; mode: z.ZodOptional; }, z.core.$strip>; export declare const paramsSchema: z.core.JSONSchema.JSONSchema; /** * 调用 @jixo/jun 的 junStartLogic 来执行后台命令。 * @param args - 符合paramsSchema的参数 * @returns 一个包含jun任务信息的对象 */ export declare const functionCall: (args: { command: string; args?: string[] | undefined; mode?: string | undefined; }) => Promise<{ pid: number; }>; //# sourceMappingURL=shellStart.function_call.d.ts.map