/** * GitHub Copilot / VS Code Configuration Generator * Generates MCP configuration for GitHub Copilot in VS Code. * * Updated 2026-07-19 (Spec-16 R5.3): * Copilot now supports native MCP via VS Code. Replaced fictional * /api/copilot/* endpoints with standard stdio MCP transport. * Skills: agents-standard (.agents/skills/), installed via code-audit install. * Hooks: none. * * ✅ VERIFIED (2026-07-20): * .vscode/mcp.json confirmed against code.visualstudio.com/docs/agents/reference/mcp-configuration. * Both workspace (.vscode/mcp.json) and user profile mcp.json are supported. */ import { BaseConfigGenerator, ConfigOutput } from './BaseConfigGenerator.js'; export declare class CopilotConfigGenerator extends BaseConfigGenerator { getToolName(): string; getFilename(): string; generateConfig(): ConfigOutput; getInstructions(): string; requiresAuth(): boolean; } //# sourceMappingURL=CopilotConfigGenerator.d.ts.map