import InvestorPreferencesOptions from './InvestorPreferencesOptions'; import InvestorPreferencesConverter from './InvestorPreferencesConverter'; import type { InvestorPreferencesMetadata } from './InvestorPreferencesOptions'; import MorningstarConnector from '../../Shared/MorningstarConnector'; export declare class InvestorPreferencesConnector extends MorningstarConnector { /** * * Static Properties * */ protected static readonly defaultOptions: InvestorPreferencesOptions; constructor(options: InvestorPreferencesOptions); readonly converter: InvestorPreferencesConverter; readonly options: InvestorPreferencesOptions; readonly metadata: InvestorPreferencesMetadata; load(options?: InvestorPreferencesOptions): Promise; private getFilter; } declare module '@highcharts/dashboards/es-modules/Data/Connectors/DataConnectorType' { interface DataConnectorTypes { MorningstarInvestorPreferences: typeof InvestorPreferencesConnector; } } export default InvestorPreferencesConnector;