import type { InvestmentResponse } from '../../../InvestmentsConnector/InvestmentsJSON'; declare namespace ProspectusFeesJSON { interface ProspectusFeesResponse extends InvestmentResponse { prospectusFees: ProspectusFeesItem; } interface ProspectusFeesItem { [key: string]: number | string | { [key: string]: number | string; }; } } export default ProspectusFeesJSON;