import type { RuleModule } from '../../types'; /** * MD036 - Emphasis used instead of a heading * * Flags standalone bold/italic lines that look like headings. * Matches markdownlint MD036 behavior: skips lines ending in punctuation * (., !, ?, :, ,, ;) since those are sentences/labels, not headings. */ export declare const noEmphasisAsHeadingRule: RuleModule;