import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TextToSpeechStreamingRequest = { /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; textToSpeechStreamingRequest: components.TextToSpeechStreamingRequest; }; export type TextToSpeechStreamingResponseResult = ReadableStream | ReadableStream; export type TextToSpeechStreamingResponse = { headers: { [k: string]: Array; }; result: ReadableStream | ReadableStream; }; /** @internal */ export declare const TextToSpeechStreamingRequest$inboundSchema: z.ZodType; /** @internal */ export type TextToSpeechStreamingRequest$Outbound = { "X-On-Behalf-Of"?: string | undefined; TextToSpeechStreamingRequest: components.TextToSpeechStreamingRequest$Outbound; }; /** @internal */ export declare const TextToSpeechStreamingRequest$outboundSchema: z.ZodType; export declare function textToSpeechStreamingRequestToJSON(textToSpeechStreamingRequest: TextToSpeechStreamingRequest): string; export declare function textToSpeechStreamingRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const TextToSpeechStreamingResponseResult$inboundSchema: z.ZodType; /** @internal */ export type TextToSpeechStreamingResponseResult$Outbound = ReadableStream | ReadableStream; /** @internal */ export declare const TextToSpeechStreamingResponseResult$outboundSchema: z.ZodType; export declare function textToSpeechStreamingResponseResultToJSON(textToSpeechStreamingResponseResult: TextToSpeechStreamingResponseResult): string; export declare function textToSpeechStreamingResponseResultFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const TextToSpeechStreamingResponse$inboundSchema: z.ZodType; /** @internal */ export type TextToSpeechStreamingResponse$Outbound = { Headers: { [k: string]: Array; }; Result: ReadableStream | ReadableStream; }; /** @internal */ export declare const TextToSpeechStreamingResponse$outboundSchema: z.ZodType; export declare function textToSpeechStreamingResponseToJSON(textToSpeechStreamingResponse: TextToSpeechStreamingResponse): string; export declare function textToSpeechStreamingResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=texttospeechstreaming.d.ts.map