import * as External from './External'; import { MorningstarConverterOptions } from './MorningstarOptions'; export declare abstract class MorningstarConverter extends External.DataConverter { constructor(options?: MorningstarConverterOptions); options: Required; protected table: External.DataTable; protected tables: Array; /** * Initiates parsing of Morningstar JSON response structure. * * @param {MorningstarConverterOptions} options * Options for the parser * */ abstract parse(options: MorningstarConverterOptions): void; /** * Returns the DataTable for the converter * * @return {External.DataTable} */ getTable(): External.DataTable; /** * Returns multiple DataTables for the converter * * @return {Array} */ getTables(): Array; } export default MorningstarConverter;