import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { TranscriptionSegmentChunk } from "./transcriptionsegmentchunk.js"; import { UsageInfo } from "./usageinfo.js"; export type TranscriptionResponse = { model: string; text: string; segments?: Array | undefined; usage: UsageInfo; language: string | null; [additionalProperties: string]: unknown; }; /** @internal */ export declare const TranscriptionResponse$inboundSchema: z.ZodType; export declare function transcriptionResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=transcriptionresponse.d.ts.map