import { Plugin } from '@tego/server'; type DataSourceState = 'loading' | 'loaded' | 'loading-failed' | 'reloading' | 'reloading-failed'; /** * Registers the plugin data source manager server plugin integration. */ export declare class PluginDataSourceManagerServer extends Plugin { dataSourceErrors: { [dataSourceKey: string]: Error; }; dataSourceStatus: { [dataSourceKey: string]: DataSourceState; }; renderJsonTemplate(template: any): any; beforeLoad(): Promise; } export default PluginDataSourceManagerServer;