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