/** * Cursor Configuration Generator * Generates MCP configuration for Cursor AI editor. * * Updated 2026-07-19 (Spec-16 R5.3): * Cursor now supports native MCP. Replaced fictional /api/cursor/* endpoints * with standard stdio + HTTP MCP transports. * Skills: project-only (.cursor/skills/), installed via code-audit install. * Hooks: advisory (afterFileEdit is fire-and-forget). */ import { BaseConfigGenerator, ConfigOutput } from './BaseConfigGenerator.js'; export declare class CursorConfigGenerator extends BaseConfigGenerator { getToolName(): string; getFilename(): string; generateConfig(): ConfigOutput; getInstructions(): string; requiresAuth(): boolean; } //# sourceMappingURL=CursorConfigGenerator.d.ts.map