import * as z from "zod/v4"; /** * Request model for partially updating voice metadata. */ export type VoiceUpdateRequest = { name?: string | null | undefined; languages?: Array | null | undefined; gender?: string | null | undefined; age?: number | null | undefined; tags?: Array | null | undefined; }; /** @internal */ export type VoiceUpdateRequest$Outbound = { name?: string | null | undefined; languages?: Array | null | undefined; gender?: string | null | undefined; age?: number | null | undefined; tags?: Array | null | undefined; }; /** @internal */ export declare const VoiceUpdateRequest$outboundSchema: z.ZodType; export declare function voiceUpdateRequestToJSON(voiceUpdateRequest: VoiceUpdateRequest): string; //# sourceMappingURL=voiceupdaterequest.d.ts.map