import { PluginManager } from '../shell'; declare const usePlugin: (opts: { plugins: PluginManager; showEditorPanel: boolean; }) => { plugin: PluginManager; activePanel: string | undefined; pluginLoadComplete: boolean; }; export default usePlugin;