import { z } from "zod"; import { ToolContext } from "./types.js"; export declare const shellStopSchema: { session_id: z.ZodString; }; export declare function shellStop(params: { session_id: string; }, context: ToolContext): Promise<{ content: { type: "text"; text: string; }[]; }>; //# sourceMappingURL=shell-stop.d.ts.map