import type { Plugin } from '@opencode-ai/plugin'; import type { PluginConfig } from './types'; /** * Creates an OpenCode plugin instance with loop management, graph indexing, and sandboxing. * * @param config - Plugin configuration including loop, graph, sandbox, and logging settings * @returns OpenCode Plugin instance with hooks for tools, events, and session management */ export declare function createForgePlugin(config: PluginConfig): Plugin; declare const pluginModule: { id: string; server: Plugin; }; export default pluginModule; export type { PluginConfig, CompactionConfig } from './types'; export { VERSION } from './version'; //# sourceMappingURL=index.d.ts.map