import type { RuleModule } from '../../types'; /** * MD052 - Reference links and images should use a label that is defined * * Only fires on explicit reference-style link/image syntax where the * intent is unambiguous: `[text][label]` or `![alt][label]`. * * Does NOT fire on bare `[text]` shortcut references, because those collide * with too many legitimate non-link uses: array literals, TypeScript tuples, * shell test expressions, JSON examples, citation markers, etc. * * Matches markdownlint MD052 behavior for explicit references only. */ export declare const referenceLinksImagesRule: RuleModule;