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