import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { TextToSpeechHistoryObject, TextToSpeechHistoryObject$Outbound } from "./texttospeechhistoryobject.js"; /** * A paginated list of text-to-speech history items. */ export type TextToSpeechHistoryList = { object: "list"; data: Array; firstId?: string | undefined; lastId?: string | undefined; hasMore: boolean; }; /** @internal */ export declare const TextToSpeechHistoryList$inboundSchema: z.ZodType; /** @internal */ export type TextToSpeechHistoryList$Outbound = { object: "list"; data: Array; first_id?: string | undefined; last_id?: string | undefined; has_more: boolean; }; /** @internal */ export declare const TextToSpeechHistoryList$outboundSchema: z.ZodType; export declare function textToSpeechHistoryListToJSON(textToSpeechHistoryList: TextToSpeechHistoryList): string; export declare function textToSpeechHistoryListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=texttospeechhistorylist.d.ts.map