import type { GuardResult, RemediationPlan } from './types.js'; /** * Convert a policy decision into a developer-facing remediation plan. The plan * never mutates source; it only advertises a safe-fix command when the scanner * has a registered fix type for the finding. */ export declare function buildRemediationPlan(projectPath: string, guard: GuardResult): RemediationPlan; export declare function remediationToMarkdown(plan: RemediationPlan): string; //# sourceMappingURL=remediation.d.ts.map