import * as ast from "../../ast/index.js"; import * as files from "../../filesystem/index.js"; /** helps find open MarkdownIt AST nodes */ export declare class OpenNodeTracker { private readonly entries; constructor(); /** closes the corresponding open ast.Node and returns its endLine */ close(type: ast.NodeType, location: files.Location): number; /** returns whether a node with the given type is open */ has(type: ast.NodeType): boolean; /** registers an opening MarkdownIt AST node */ open(node: ast.Node, endLine: number): void; } //# sourceMappingURL=open-node-tracker.d.ts.map