import { z } from 'zod'; /** * Zod schema for Expected Shortfall calculation options */ export declare const ExpectedShortfallOptionsSchema: z.ZodObject<{ confidenceLevel: z.ZodNumber; method: z.ZodDefault>>; simulations: z.ZodDefault>; }, z.core.$strip>; export type ExpectedShortfallOptions = z.input; export type ExpectedShortfallOptionsValidated = z.output;