/** * Aider Configuration Generator — RETIRED * * Originally added Spec-16 R5.3 with path .aider.mcp.json as a "convention * bridge" (users would reference it from .aider.conf.yml). * * Retired 2026-07-20 (Task #18 — generator path audit): * Aider has zero documented MCP support. Verification per standing rule: * - aider.chat/docs/config/mcp.html → 404 * - aider.chat/docs/llm.html → 404 * - aider.chat/docs/ (complete docs index) → zero MCP pages * Both the specific MCP doc URL fails AND the docs sitemap lacks any MCP * entries. The .aider.mcp.json convention bridge was entirely our invention * with no doc support. No generator to write. * This file is kept as a tombstone; the class is no longer registered in * ConfigGeneratorFactory. */ import { BaseConfigGenerator, ConfigOutput } from './BaseConfigGenerator.js'; export declare class AiderConfigGenerator extends BaseConfigGenerator { getToolName(): string; getFilename(): string; generateConfig(): ConfigOutput; getInstructions(): string; requiresAuth(): boolean; } //# sourceMappingURL=AiderConfigGenerator.d.ts.map