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