import { z } from 'zod'; export declare const PortfolioRebalancingResultSchema: z.ZodObject<{ newWeights: z.ZodArray; tradeAmounts: z.ZodArray; tradePercentages: z.ZodArray; totalTradeAmount: z.ZodNumber; totalTransactionCosts: z.ZodNumber; portfolioValueAfterCosts: z.ZodNumber; assetsToRebalance: z.ZodNumber; method: z.ZodEnum<{ proportional: "proportional"; fixed: "fixed"; }>; rebalancingNeeded: z.ZodBoolean; turnover: z.ZodNumber; }, z.core.$strip>; export type PortfolioRebalancingResult = z.infer;