/** * Output Formatting * * Format repair plans for human-readable and machine-readable output. */ import type { RepairPlan } from "./types.js"; /** * Format a repair plan for human-readable console output */ export declare function formatPlanText(plan: RepairPlan): string; /** * Format a repair plan as JSON for programmatic use */ export declare function formatPlanJSON(plan: RepairPlan): string; /** * Format a compact version for agent consumption */ export declare function formatPlanCompact(plan: RepairPlan): string; //# sourceMappingURL=format.d.ts.map