/** * Shell Plugin Factory * Creates microkernel plugin for UI Shell integration */ import type { PluginModule } from '@hamak/microkernel-spi'; import type { ActivateContext } from '@hamak/microkernel-api'; import type { ShellConfig } from '../../api/index.js'; import { DefaultShell } from '../core/DefaultShell.js'; export declare function createShellPlugin(config?: ShellConfig): PluginModule; export declare function getShellFromContext(ctx: ActivateContext): DefaultShell; //# sourceMappingURL=ShellPluginFactory.d.ts.map