import { z } from 'zod'; export declare const TimeWeightedReturnOptionsSchema: z.ZodObject<{ portfolioValues: z.ZodArray; cashFlows: z.ZodArray; annualizationFactor: z.ZodDefault; }, z.core.$strip>; export type TimeWeightedReturnOptions = z.infer;