import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type GetCustomVoiceResponse = { /** * 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 GetCustomVoiceResponse$inboundSchema: z.ZodType; /** @internal */ export type GetCustomVoiceResponse$Outbound = { voice_id: string; name: string; description?: string | null | undefined; }; /** @internal */ export declare const GetCustomVoiceResponse$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 GetCustomVoiceResponse$ { /** @deprecated use `GetCustomVoiceResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetCustomVoiceResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetCustomVoiceResponse$Outbound` instead. */ type Outbound = GetCustomVoiceResponse$Outbound; } export declare function getCustomVoiceResponseToJSON(getCustomVoiceResponse: GetCustomVoiceResponse): string; export declare function getCustomVoiceResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getcustomvoiceresponse.d.ts.map