import { z } from 'zod'; /** * Zod schema for VaR calculation options */ export declare const VaROptionsSchema: z.ZodObject<{ confidenceLevel: z.ZodNumber; method: z.ZodDefault>>; simulations: z.ZodDefault>; }, z.core.$strip>; /** * Input type for VaR calculation options (user-provided) * Only confidenceLevel is required; method and simulations have defaults */ export type VaROptions = z.input; /** * Validated type after parsing with defaults applied * All properties are guaranteed to exist */ export type VaROptionsValidated = z.output;