import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AudioFormat, AudioFormat$Outbound } from "./audioformat.js"; export type RealtimeTranscriptionSession = { requestId: string; model: string; audioFormat: AudioFormat; targetStreamingDelayMs?: number | null | undefined; }; /** @internal */ export declare const RealtimeTranscriptionSession$inboundSchema: z.ZodType; /** @internal */ export type RealtimeTranscriptionSession$Outbound = { request_id: string; model: string; audio_format: AudioFormat$Outbound; target_streaming_delay_ms?: number | null | undefined; }; /** @internal */ export declare const RealtimeTranscriptionSession$outboundSchema: z.ZodType; export declare function realtimeTranscriptionSessionToJSON(realtimeTranscriptionSession: RealtimeTranscriptionSession): string; export declare function realtimeTranscriptionSessionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=realtimetranscriptionsession.d.ts.map