/** * Danger Zone Handler * * Handles marking and unmarking protected code regions */ import type { MCPToolResult } from "../../types/mcp-types.js"; export declare class DangerZoneHandler { private projectRoot; private dangerZoneService; constructor(projectRoot: string); /** * Mark a code region as protected (danger zone) */ handleMarkDanger(args: { file: string; startLine?: number; endLine?: number; reason: string; }): Promise; /** * Remove danger zone protection from a region */ handleUnmarkDanger(args: { file: string; line?: number; }): Promise; /** * List all protected danger zones */ handleListDangerZones(): Promise; } //# sourceMappingURL=danger-zone-handler.d.ts.map