/** * Asset Allocation Algorithm - Example Usage * * Demonstrates practical usage of the asset allocation engine * with real-world scenarios and best practices. */ /** * Example 1: Basic Conservative Portfolio for Retirement */ export declare function conservativeRetirementPortfolio(): Promise; /** * Example 2: Aggressive Growth Portfolio for Young Investor */ export declare function aggressiveGrowthPortfolio(): Promise; /** * Example 3: Rebalancing an Existing Portfolio */ export declare function rebalancePortfolio(): Promise; /** * Example 4: Crisis Mode Allocation */ export declare function crisisModePortfolio(): Promise; /** * Example 5: Risk Parity Portfolio */ export declare function riskParityPortfolio(): Promise; /** * Example 6: Small Account Allocation */ export declare function smallAccountPortfolio(): Promise; /** * Run all examples */ export declare function runAllExamples(): Promise; //# sourceMappingURL=asset-allocation-example.d.ts.map