import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type CreateCustomVoiceResponse = { /** * Unique identifier for the created voice */ voiceId: string; }; /** @internal */ export declare const CreateCustomVoiceResponse$inboundSchema: z.ZodType; /** @internal */ export type CreateCustomVoiceResponse$Outbound = { voice_id: string; }; /** @internal */ export declare const CreateCustomVoiceResponse$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 CreateCustomVoiceResponse$ { /** @deprecated use `CreateCustomVoiceResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CreateCustomVoiceResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CreateCustomVoiceResponse$Outbound` instead. */ type Outbound = CreateCustomVoiceResponse$Outbound; } export declare function createCustomVoiceResponseToJSON(createCustomVoiceResponse: CreateCustomVoiceResponse): string; export declare function createCustomVoiceResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createcustomvoiceresponse.d.ts.map