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