import { z } from 'zod';
declare const inputSchema: z.ZodObject<{
    voiceId: z.ZodString;
}, "strip", z.ZodTypeAny, {
    voiceId: string;
}, {
    voiceId: string;
}>;
export declare const getVoiceTool: {
    name: string;
    description: string;
    inputSchema: z.ZodObject<{
        voiceId: z.ZodString;
    }, "strip", z.ZodTypeAny, {
        voiceId: string;
    }, {
        voiceId: string;
    }>;
    handler: (args: z.infer<typeof inputSchema>) => Promise<{
        content: {
            type: string;
            text: string;
        }[];
    }>;
};
export {};
//# sourceMappingURL=get-voice.d.ts.map