/** * Install the bundled Reconstruct GitHub Copilot / VS Code Agent plugin. * * The install is local and file-based: * - Copy bundled plugin assets to ~/.reconstruct/vscode-copilot-plugin * - Write plugin-root .mcp.json with the minted Reconstruct MCP key * - Register the plugin root in VS Code user settings chat.pluginLocations */ export declare const COPILOT_LOCAL_PLUGIN_ID = "vscode-copilot-plugin"; /** Bundled plugin root (sibling to dist/ when running compiled CLI). */ export declare function resolveBundledCopilotPluginRoot(): string; export declare function getCopilotLocalPluginDir(): string; export declare function getVSCodeUserSettingsPath(): string; export declare function installCopilotVSCodePlugin(apiKey: string, mcpUrl?: string): Promise; export type CopilotPluginDoctorStatus = "ok" | "missing" | "invalid_manifest" | "invalid_mcp" | "not_registered" | "plugins_disabled"; export declare function validateCopilotVSCodePlugin(): Promise; //# sourceMappingURL=copilot-plugin-install.d.ts.map