/** * Detect project tech stack by inspecting package.json dependencies. */ export declare function detectTechStack(projectRoot: string): string[]; /** * Resolve a user-supplied plugin name to a fully-qualified package name. */ export declare function resolvePluginName(name: string): string; /** * Non-interactive plugin installation from a comma-separated list. */ export declare function installPluginsFromList(names: string): Promise; /** * Interactive plugin installation guide. * Detects project tech stack, recommends compatible plugins, and lets the user * select which ones to install via a checkbox prompt. */ export declare function guidePluginInstallation(projectRoot: string): Promise; //# sourceMappingURL=plugin-guide.d.ts.map