import type { LintFinding } from "../linter/types.js"; /** Render one file's findings, 1-indexed, one line per finding. Callers only * invoke this when there is at least one finding. */ export declare function formatFindings(filePath: string, findings: LintFinding[]): string;