import { z } from "zod"; import { ToolContext } from "./types.js"; export declare const shellStartSchema: { command: z.ZodString; args: z.ZodOptional>; cols: z.ZodOptional; rows: z.ZodOptional; theme: z.ZodOptional; }; export declare function shellStart(params: { command: string; args?: string[]; cols?: number; rows?: number; theme?: string; }, context: ToolContext): Promise<{ content: { type: "text"; text: string; }[]; }>; //# sourceMappingURL=shell-start.d.ts.map