import { z } from 'zod'; /** * Zod schema for VaR calculation result */ export declare const VaRResultSchema: z.ZodObject<{ value: z.ZodNumber; confidenceLevel: z.ZodNumber; method: z.ZodString; cvar: z.ZodOptional; }, z.core.$strip>; export type VaRResult = z.infer;