import type { InvestmentResponse } from '../../../InvestmentsConnector/InvestmentsJSON'; declare namespace CountryAndRegionExposureJSON { interface CountryAndRegionExposureResponse extends InvestmentResponse { countryAndRegionalExposureBreakdown: countryAndRegionalExposureBreakdownItem; } interface countryAndRegionalExposureBreakdownItem { [key: string]: number | string; } } export default CountryAndRegionExposureJSON;