import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetTextToSpeechHistoryContentRequest = { ttsId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type GetTextToSpeechHistoryContentResponse = ReadableStream | ReadableStream; /** @internal */ export declare const GetTextToSpeechHistoryContentRequest$inboundSchema: z.ZodType; /** @internal */ export type GetTextToSpeechHistoryContentRequest$Outbound = { tts_id: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const GetTextToSpeechHistoryContentRequest$outboundSchema: z.ZodType; export declare function getTextToSpeechHistoryContentRequestToJSON(getTextToSpeechHistoryContentRequest: GetTextToSpeechHistoryContentRequest): string; export declare function getTextToSpeechHistoryContentRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetTextToSpeechHistoryContentResponse$inboundSchema: z.ZodType; /** @internal */ export type GetTextToSpeechHistoryContentResponse$Outbound = ReadableStream | ReadableStream; /** @internal */ export declare const GetTextToSpeechHistoryContentResponse$outboundSchema: z.ZodType; export declare function getTextToSpeechHistoryContentResponseToJSON(getTextToSpeechHistoryContentResponse: GetTextToSpeechHistoryContentResponse): string; export declare function getTextToSpeechHistoryContentResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=gettexttospeechhistorycontent.d.ts.map