import type { InvestmentResponse } from '../../../InvestmentsConnector/InvestmentsJSON'; declare namespace AssetAllocationBreakdownJSON { interface AssetAllocationBreakdownResponse extends InvestmentResponse { assetAllocationBreakdown: assetAllocationBreakdownItem; } interface assetAllocationBreakdownItem { [key: string]: number; } } export default AssetAllocationBreakdownJSON;