import { Plugin } from "."; export declare class PluginManager { private readonly plugins; register(plugin: Plugin): void; getModules(): { [k: string]: any; }; findProtocol(type: string, id: string): import("../utils").Ctor> | null; }