import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type UpdateCustomVoiceResponse = { /** * Unique identifier for the voice */ voiceId: string; /** * Name of the voice */ name: string; /** * Description of the voice */ description?: string | null | undefined; }; /** @internal */ export declare const UpdateCustomVoiceResponse$inboundSchema: z.ZodType; /** @internal */ export type UpdateCustomVoiceResponse$Outbound = { voice_id: string; name: string; description?: string | null | undefined; }; /** @internal */ export declare const UpdateCustomVoiceResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace UpdateCustomVoiceResponse$ { /** @deprecated use `UpdateCustomVoiceResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateCustomVoiceResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateCustomVoiceResponse$Outbound` instead. */ type Outbound = UpdateCustomVoiceResponse$Outbound; } export declare function updateCustomVoiceResponseToJSON(updateCustomVoiceResponse: UpdateCustomVoiceResponse): string; export declare function updateCustomVoiceResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updatecustomvoiceresponse.d.ts.map