export class MarkdownSection { /** * @param {string} markdown * @param {string} sectionPrefix - return the contents of section whose heading starts with this */ constructor(markdown: string, sectionPrefix: string); markdown: string; sectionPrefix: string; /** * @param {string} line */ sectionDepth(line: string): number; toString(): string; [Symbol.iterator](): Generator; } //# sourceMappingURL=markdown.d.ts.map