import { InvestmentResponse } from '../InvestmentsConnector/InvestmentsJSON'; declare namespace EquityStyleBoxJSON { interface EquityStyleBoxResponse extends InvestmentResponse { stockStyle: Array; } interface EquityStyleBoxItem { effectiveDate: string; regionId?: { value: string; code: number; }; growthScore?: number; valueScore?: number; sizeScore: number; styleScore: number; styleBox: { value: string; code: number; }; } } export default EquityStyleBoxJSON;