import { BotGuardConfig } from '../config'; import { ProtectAllArgs } from './mcpGateway'; export interface ProtectionRepairResult { cursorHooksChanged: boolean; claudeHooksChanged: boolean; cursorHooksHealthy: boolean; claudeHooksHealthy: boolean; } /** * Single convergence pipeline for daemon startup, drift, and remote repair. * MCP wrapping repairs stale runtime paths; hook repair edits only managed * commands and preserves each command's event, timeout, mode and fail stance. */ export declare function repairProtection(args: ProtectAllArgs, config: BotGuardConfig): Promise;