import { z } from 'zod'; /** * Zod schema for regime detection options */ export declare const RegimeDetectionOptionsSchema: z.ZodObject<{ numStates: z.ZodDefault; features: z.ZodDefault, z.ZodArray>, z.ZodArray>]>>; featureWindow: z.ZodDefault; maxIterations: z.ZodDefault; convergenceTolerance: z.ZodDefault; stateLabels: z.ZodOptional>; }, z.core.$strip>; /** * TypeScript types derived from Zod schemas */ export type RegimeDetectionOptions = z.infer; /** * Validated type after parsing */ export type RegimeDetectionOptionsValidated = z.output;