import type { PluginInspection, PluginType } from "./plugin-loader-types.js"; /** 所有 CLI 路径共享同一组插件包名候选,避免运行、doctor 与服务预检规则漂移。 */ export declare function pluginCandidates(type: PluginType, name: string): string[]; /** 区分插件未安装与 workspace 包存在但构建入口缺失。 */ export declare function inspectPlugin(candidates: string[], runtimeRequire: NodeJS.Require): PluginInspection; interface ExtensionRuntimeMismatch { packageName: "onebots" | "@onebots/core"; pluginPackageJson: string; hostPackageJson: string; } /** 阻止插件绑定到另一套静态 Registry;这类插件即使完成初始化也不会注册到当前网关。 */ export declare function findExtensionRuntimeMismatch(entryPath: string): ExtensionRuntimeMismatch | undefined; export declare function realPath(file: string): string; export {}; //# sourceMappingURL=plugin-inspection.d.ts.map