import type { Rule } from "../types.js"; interface TermHit { term: string; index: number; suggestion: string; } declare function findTerms(text: string): TermHit[]; declare function isAllowlisted(repoRoot: string): boolean; export declare const rule: Rule; export declare const _internal: { findTerms: typeof findTerms; isAllowlisted: typeof isAllowlisted; DISABLE_DIRECTIVE: string; }; export {};