import MorningstarConverter from '../Shared/MorningstarConverter'; import { RiskScoreConverterOptions, RiskScoreMetadata } from './RiskScoreOptions'; /** * Handles parsing and transformation of Portfolio Risk Score to a table. * * @private */ export declare class RiskScoreConverter extends MorningstarConverter { /** * Constructs an instance of the RiskScoreConverter. * * @param { RiskScoreConverterOptions } [options] * Options for the converter. */ constructor(options?: RiskScoreConverterOptions); /** * Options for the DataConverter. */ readonly options: Required; /** * Metadata from the previous load. */ readonly metadata: RiskScoreMetadata; /** * Initiates the parsing of the Risk Score response * * @param { RiskScoreConverterOptions } [options] * Options for the parser * */ parse(options: RiskScoreConverterOptions): (boolean | undefined); } export default RiskScoreConverter;