import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WordTimestamp = { startTime: number; endTime: number; word: string; probability: number; }; /** @internal */ export declare const WordTimestamp$inboundSchema: z.ZodType; /** @internal */ export type WordTimestamp$Outbound = { start_time: number; end_time: number; word: string; probability: number; }; /** @internal */ export declare const WordTimestamp$outboundSchema: z.ZodType; export declare function wordTimestampToJSON(wordTimestamp: WordTimestamp): string; export declare function wordTimestampFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=wordtimestamp.d.ts.map