import { z } from 'zod'; /** * Zod schema for volatility calculation options */ export declare const VolatilityOptionsSchema: z.ZodObject<{ method: z.ZodEnum<{ standard: "standard"; exponential: "exponential"; parkinson: "parkinson"; "garman-klass": "garman-klass"; }>; annualizationFactor: z.ZodOptional; lambda: z.ZodOptional; highPrices: z.ZodOptional>; lowPrices: z.ZodOptional>; openPrices: z.ZodOptional>; closePrices: z.ZodOptional>; }, z.core.$strip>; /** * TypeScript types derived from Zod schemas */ export type VolatilityOptions = z.infer; /** * Validated type after parsing */ export type VolatilityOptionsValidated = z.output;