import { z } from 'zod'; /** * Zod schema for volatility calculation result */ export declare const VolatilityResultSchema: z.ZodObject<{ value: z.ZodNumber; method: z.ZodString; annualized: z.ZodOptional; }, z.core.$strip>; /** * TypeScript types derived from Zod schemas */ export type VolatilityResult = z.infer; /** * Validated type after parsing */ export type VolatilityResultValidated = z.output;