import { ParsingContext } from "../ParsingContext.js"; /** * Check for markdown-style section headers (# through ######) * These are "greedy" sections that auto-close when a same or higher level section is encountered. */ export declare function checkMarkdownSection(lines: string[], i: number, lengthAtIndex: number[], context: ParsingContext): { end: number; } | false;