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