import { RiskFactorCategory } from '../fraud-assessment/RiskFactorCategory'; import { RiskFactorType } from '../fraud-assessment/RiskFactorType'; import { TextKey } from './TextKey'; export declare class TextProvider { static getRiskFactorDescription: (type: RiskFactorType, category: RiskFactorCategory) => string; static getText: (key: TextKey, ...parameters: string[]) => string; private static DESCRIPTIONS; private static RISK_FACTORS; private static RISK_FACTOR_CATEGORY; }