import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteCustomVoiceRequest = { voiceId: string; }; /** @internal */ export declare const DeleteCustomVoiceRequest$inboundSchema: z.ZodType; /** @internal */ export type DeleteCustomVoiceRequest$Outbound = { voice_id: string; }; /** @internal */ export declare const DeleteCustomVoiceRequest$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 DeleteCustomVoiceRequest$ { /** @deprecated use `DeleteCustomVoiceRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DeleteCustomVoiceRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DeleteCustomVoiceRequest$Outbound` instead. */ type Outbound = DeleteCustomVoiceRequest$Outbound; } export declare function deleteCustomVoiceRequestToJSON(deleteCustomVoiceRequest: DeleteCustomVoiceRequest): string; export declare function deleteCustomVoiceRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deletecustomvoice.d.ts.map