import type { Problem } from '../types/index.js'; /** * Prioritize problems by severity (error > warn > info) and cap to a limit if provided. * This is intended for CI annotations (e.g., SARIF) and does not affect CLI output. */ export declare function prioritizeProblems(problems: Problem[], limit?: number): Problem[]; //# sourceMappingURL=prioritize-problems.d.ts.map