import type { TrackerConfig } from './types.js'; export type LintSeverity = 'warn' | 'error' | 'off'; export type LintFinding = { severity: Exclude; rule: string; message: string; issue?: string; section?: string; excerpt?: string; }; export declare const LINT_RULES: Record; export declare const WEAK_CLAIM_LEXICON_IDS: string[]; export declare function lintIssueBody(body: string, issue?: string, config?: TrackerConfig): LintFinding[];