import type { Location } from 'react-router-dom'; import type { DetailedScorecardData } from '../types'; import type { ProblemWithCodeframe } from '../lint'; export declare const OTHER_TEAMS_LABEL = "Other"; export declare const NON_CONFORMANT = "Non-conformant"; export declare const SEVERITY_TO_COLOR: { Error: string; Warn: string; Pass: string; }; export declare function useSearchParams(location: Location): URLSearchParams; export declare function severityIcon(severity: string): "❌" | "⚠️" | "ℹ️"; export declare function severityColor(severity: string): "blue" | "orange" | "red"; export declare function getProblemsByRule(scorecard: DetailedScorecardData, ruleId: string): ProblemWithCodeframe[]; //# sourceMappingURL=utils.d.ts.map