/** * Fix suggestions for audit findings. * * Maps pattern IDs to human-readable remediation advice. */ import type { AuditFinding } from "./audit-types.js"; /** Fix suggestion lookup by pattern ID */ export declare const FIX_SUGGESTIONS: Record; /** * Attach fix suggestions to findings based on their ruleId. * Only attaches when fix=true. */ export declare function attachFixSuggestions(findings: AuditFinding[], fix: boolean): AuditFinding[];