import { z } from 'zod'; export declare const PortfolioVolatilityResultSchema: z.ZodObject<{ volatility: z.ZodNumber; annualizedVolatility: z.ZodNumber; variance: z.ZodNumber; covarianceMatrix: z.ZodArray>; }, z.core.$strip>; export type PortfolioVolatilityResult = z.infer;