import { z } from 'zod'; /** * Zod schema for Viterbi algorithm result */ export declare const ViterbiResultSchema: z.ZodObject<{ path: z.ZodArray; logProbability: z.ZodNumber; }, z.core.$strip>; /** * TypeScript types derived from Zod schemas */ export type ViterbiResult = z.infer; /** * Validated type after parsing */ export type ViterbiResultValidated = z.output;