import { IPluginManager, Plugin } from '@sap/artifact-management-base-types'; /** * Central entrypoint for project and module specific implementations ("plugins"). * * @todo: Later this needs to be able to be really plugable, * meaning it should be possible to add plugins without changing this implementation. */ declare class PluginDefintionProvider implements IPluginManager { private pluginMap; constructor(); register(plugin: Plugin): void; get pluginNames(): string[]; get plugins(): Plugin[]; getPlugin(pluginName: string): Plugin; } declare const _default: PluginDefintionProvider; export default _default;