/** * ThreadWeaver — Tool Registration * Registers the threadweaver tool with the OpenCode plugin system. */ import type { PluginInput } from "@opencode-ai/plugin"; import { tool } from "@opencode-ai/plugin"; import type { ThreadWeaverConfig } from "./types"; import { type ThreadWeaverDeps } from "./protocol"; export declare function createThreadWeaverTool(ctx: PluginInput, twConfig: Partial, deps: ThreadWeaverDeps): ReturnType;