export declare enum AnalysisType { Stocks = "stocks", Bonds = "bonds" } export declare const ALLOCATION_KEYS: readonly ["allocations_cash", "allocations_convertible", "allocations_foreign_bond", "allocations_foreign_stock", "allocations_other", "allocations_preferred", "allocations_us_bond", "allocations_us_stock", "allocations_unknown"]; export type AllocationKey = (typeof ALLOCATION_KEYS)[number]; export declare const STYLE_WEIGHT_KEYS: readonly ["large_core_weight", "large_growth_weight", "large_value_weight", "mid_core_weight", "mid_growth_weight", "mid_value_weight", "small_core_weight", "small_growth_weight", "small_value_weight", "unknown_weight"]; export declare const EquityClassificationTypes: { UNKNOWN: number; LARGE_VALUE: number; LARGE_CORE: number; LARGE_GROWTH: number; MID_VALUE: number; MID_CORE: number; MID_GROWTH: number; SMALL_VALUE: number; SMALL_CORE: number; SMALL_GROWTH: number; }; export declare const EquityClassificationValues: { 0: string; 1: string; 2: string; 3: string; 4: string; 5: string; 6: string; 7: string; 8: string; 9: string; }; export declare const FixedIncomeClassificationTypes: { UNKNOWN: number; HIGH_LIMITED: number; HIGH_MODERATE: number; HIGH_EXTENSIVE: number; MEDIUM_LIMITED: number; MEDIUM_MODERATE: number; MEDIUM_EXTENSIVE: number; LOW_LIMITED: number; LOW_MODERATE: number; LOW_EXTENSIVE: number; }; export declare const FixedIncomeClassificationValues: { 0: string; 1: string; 2: string; 3: string; 4: string; 5: string; 6: string; 7: string; 8: string; 9: string; };