export interface Section { headingPath: string; headingText: string; headingLevel: number; lineStart: number; lineEnd: number; content: string; parentHeadings: string[]; } export interface ParsedDocument { filePath: string; sections: Section[]; } export declare function parseMarkdown(content: string, filePath: string): ParsedDocument; export declare function getFileStem(filePath: string): string; //# sourceMappingURL=parser.d.ts.map