import { z } from 'zod'; import { Tool } from '../../core/types.js'; declare const parameterSchema: z.ZodObject<{ instanceId: z.ZodString; guidance: z.ZodOptional; terminate: z.ZodOptional; description: z.ZodString; }, "strip", z.ZodTypeAny, { description: string; instanceId: string; guidance?: string | undefined; terminate?: boolean | undefined; }, { description: string; instanceId: string; guidance?: string | undefined; terminate?: boolean | undefined; }>; declare const returnSchema: z.ZodObject<{ output: z.ZodString; completed: z.ZodBoolean; error: z.ZodOptional; terminated: z.ZodOptional; messageSent: z.ZodOptional; messageCount: z.ZodOptional; }, "strip", z.ZodTypeAny, { completed: boolean; output: string; error?: string | undefined; terminated?: boolean | undefined; messageCount?: number | undefined; messageSent?: boolean | undefined; }, { completed: boolean; output: string; error?: string | undefined; terminated?: boolean | undefined; messageCount?: number | undefined; messageSent?: boolean | undefined; }>; type Parameters = z.infer; type ReturnType = z.infer; export declare const agentMessageTool: Tool; export {}; //# sourceMappingURL=agentMessage.d.ts.map