import { z } from 'zod'; /** * Zod schema for Baum-Welch training algorithm options */ export declare const BaumWelchOptionsSchema: z.ZodObject<{ maxIterations: z.ZodNumber; convergenceTolerance: z.ZodNumber; initialModel: z.ZodOptional>; emissionParams: z.ZodArray; variances: z.ZodArray; }, z.core.$strip>>; initialProbs: z.ZodArray; logLikelihood: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>; /** * TypeScript types derived from Zod schemas */ export type BaumWelchOptions = z.infer; /** * Validated type after parsing */ export type BaumWelchOptionsValidated = z.output;