import type { Rule } from "../types.js"; declare function hasVersionEntries(content: string): boolean; declare function isAllowlisted(repoRoot: string): boolean; /** Returns the first changelog file that exists AND has version-structured entries. */ declare function findStructuredChangelog(repoRoot: string): string | null; export declare const rule: Rule; export declare const _internal: { hasVersionEntries: typeof hasVersionEntries; findStructuredChangelog: typeof findStructuredChangelog; isAllowlisted: typeof isAllowlisted; DISABLE_DIRECTIVE: string; }; export {};