declare namespace InvestorPreferencesJSON { interface Response { InvestorPreferences: InvestorPreferencesResponse; } interface InvestorPreferencesResponse { total: number; page: number; pageSize: number; rows: InvestorPreferenceRow[]; } interface InvestorPreferenceRow { [key: string]: string | number | boolean; } function isInvestorPreferencesResponse(json?: unknown): json is InvestorPreferencesResponse; function isInvestorPreferenceRow(json?: unknown): json is InvestorPreferenceRow; } export default InvestorPreferencesJSON;