import { z } from 'zod'; declare const inputSchema: z.ZodObject<{ text: z.ZodString; voice: z.ZodDefault>; autoPlay: z.ZodDefault>; }, "strip", z.ZodTypeAny, { text: string; voice: string; autoPlay: boolean; }, { text: string; voice?: string | undefined; autoPlay?: boolean | undefined; }>; export declare const autoReadResponseTool: { name: string; description: string; inputSchema: z.ZodObject<{ text: z.ZodString; voice: z.ZodDefault>; autoPlay: z.ZodDefault>; }, "strip", z.ZodTypeAny, { text: string; voice: string; autoPlay: boolean; }, { text: string; voice?: string | undefined; autoPlay?: boolean | undefined; }>; handler: (args: z.infer) => Promise<{ content: { type: string; text: string; }[]; }>; }; export {}; //# sourceMappingURL=auto-read-response.d.ts.map