import { z } from 'zod'; export declare const CalmarRatioResultSchema: z.ZodObject<{ calmarRatio: z.ZodNumber; annualizedReturn: z.ZodNumber; maxDrawdownPercent: z.ZodNumber; }, z.core.$strip>; export type CalmarRatioResult = z.infer;