import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./sdkvalidationerror.js"; export type TranscriptionWord = { /** * The text content of the word. */ word: string; /** * Start time of the word in seconds. */ start: number; /** * End time of the word in seconds. */ end: number; }; /** @internal */ export declare const TranscriptionWord$inboundSchema: z.ZodType; /** @internal */ export type TranscriptionWord$Outbound = { word: string; start: number; end: number; }; /** @internal */ export declare const TranscriptionWord$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace TranscriptionWord$ { /** @deprecated use `TranscriptionWord$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TranscriptionWord$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TranscriptionWord$Outbound` instead. */ type Outbound = TranscriptionWord$Outbound; } export declare function transcriptionWordToJSON(transcriptionWord: TranscriptionWord): string; export declare function transcriptionWordFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=transcriptionword.d.ts.map