import type { FindingRow } from "./finding-row.js"; export type Label = { verdict: "tp" | "fp"; source: "auto"; reason: string; }; export declare function autoLabel(row: FindingRow, repoDir: string): Label;