import { AxiosInstance } from "axios"; import { Resource } from "../Resource"; type CountryRisk = { risk?: string; country?: string | null; breakdown?: object | null; }; type PoliticalExposureRisk = { risk?: string; checkId?: string | null; }; type OccupationRisk = { risk?: string; checkId?: string | null; occupationCategory?: string | null; occupationTitle?: string | null; }; type WatchlistRisk = { risk?: string; checkId?: string | null; }; export type RiskProfile = { overall?: string; checkId?: string; countryRisk?: CountryRisk; politicalExposureRisk?: PoliticalExposureRisk; occupationRisk?: OccupationRisk; watchlistRisk?: WatchlistRisk; updatedAt?: string; }; export declare class RiskProfiles extends Resource { constructor(axiosInstance: AxiosInstance); get(clientId: string): Promise; } export {};