import { z } from 'zod'; /** * Zod schema for forward algorithm result */ export declare const ForwardResultSchema: z.ZodObject<{ alpha: z.ZodArray>; scalingFactors: z.ZodArray; logLikelihood: z.ZodNumber; }, z.core.$strip>; /** * TypeScript types derived from Zod schemas */ export type ForwardResult = z.infer; /** * Validated type after parsing */ export type ForwardResultValidated = z.output;