import { z } from 'zod'; /** * Zod schema for HMM model */ export declare const HMMModelSchema: z.ZodObject<{ numStates: z.ZodNumber; numFeatures: z.ZodNumber; transitionMatrix: z.ZodArray>; emissionParams: z.ZodArray; variances: z.ZodArray; }, z.core.$strip>>; initialProbs: z.ZodArray; logLikelihood: z.ZodOptional; }, z.core.$strip>; /** * TypeScript types derived from Zod schemas */ export type HMMModel = z.infer; /** * Validated type after parsing */ export type HMMModelValidated = z.output;