import { z } from "zod/v4"; export declare const name = "shellKill"; export declare const description = "\u505C\u6B62\u4E00\u4E2A\u6216\u591A\u4E2A\u6B63\u5728\u8FD0\u884C\u7684\u540E\u53F0\u4EFB\u52A1\u3002"; export declare const zParams: z.ZodObject<{ pids: z.ZodArray; }, z.core.$strip>; export declare const paramsSchema: z.core.JSONSchema.JSONSchema; /** * 调用 @jixo/jun 的 junKillLogic 来停止任务。 * @param args - 符合paramsSchema的参数 * @returns 一个报告操作结果的对象 */ export declare const functionCall: (args: z.infer) => Promise<{ status: string; killed_count: number; failed_pids: { pid: number; reason: string; }[]; }>; //# sourceMappingURL=shellKill.function_call.d.ts.map