import type { Finding } from "../types.js"; export interface AnchorKey { file: string; rule: string; /** Normalized drifted literal for content-anchored findings, else "*". */ bucket: string; } export declare function anchorKey(f: Finding): AnchorKey; export declare function computeFindingId(f: Finding, indexWithinKey: number): string; export declare function findingIdsFor(findings: readonly Finding[]): Map;