import type MorningstarConverter from './MorningstarConverter'; import type { XRayConverterOptions } from '../XRay'; export declare const DATA_TABLES: { key: string; }[]; export interface XRayConverter extends MorningstarConverter { parse(options: XRayConverterOptions): void; } export declare function initConverter(dataPoint: string): XRayConverter;