import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type UpdateCustomVoiceRequest = { /** * Name of the voice */ name?: string | undefined; /** * Description of the voice */ description?: string | undefined; }; /** @internal */ export declare const UpdateCustomVoiceRequest$inboundSchema: z.ZodType; /** @internal */ export type UpdateCustomVoiceRequest$Outbound = { name?: string | undefined; description?: string | undefined; }; /** @internal */ export declare const UpdateCustomVoiceRequest$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 UpdateCustomVoiceRequest$ { /** @deprecated use `UpdateCustomVoiceRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateCustomVoiceRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateCustomVoiceRequest$Outbound` instead. */ type Outbound = UpdateCustomVoiceRequest$Outbound; } export declare function updateCustomVoiceRequestToJSON(updateCustomVoiceRequest: UpdateCustomVoiceRequest): string; export declare function updateCustomVoiceRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updatecustomvoicerequest.d.ts.map