import type { Finding } from "../types.js"; export declare const SEVERITY_ORDER: { readonly error: 0; readonly warning: 1; readonly info: 2; }; export declare function sortFindings(a: Finding, b: Finding): number;