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