/** * @fileoverview Shared severity and category mapping for fitness checks * * Maps FindingSeverity to SignalSeverity and check category strings * to SignalCategory. Used by defineCheck and PatternDetector. */ import type { FindingSeverity } from '../types/findings.js'; import type { SignalSeverity, SignalCategory } from '@opensip-cli/core'; /** * Map FindingSeverity to SignalSeverity. Release 2.13.0 (§5.9): delegates to the * central `SeverityPolicy` (one author→wire home), byte-identical * (`error → high`, `warning → medium`). */ export declare function mapFindingSeverity(severity: FindingSeverity): SignalSeverity; /** Map check tags to SignalCategory (first matching tag wins) */ export declare function mapTagsToSignalCategory(tags: readonly string[]): SignalCategory; //# sourceMappingURL=severity-mapping.d.ts.map