import { DataHandle, DataSink } from "@azure-tools/datastore"; import * as commonmark from "commonmark"; /** * Retrieve all code blocks in the markdown file * @param hConfigFile DataHandle for the markdown config file. * @param sink Data sink. */ export declare function parseCodeBlocksFromMarkdown(hConfigFile: DataHandle, sink: DataSink): Promise>; export declare function parseCommonmark(markdown: string): commonmark.Node; export declare function commonmarkSubHeadings(startNode: commonmark.Node | null): Iterable; export declare function commonmarkHeadingText(headingNode: commonmark.Node): string; export declare function commonmarkHeadingFollowingText(headingNode: commonmark.Node): [number, number]; //# sourceMappingURL=markdown-parser.d.ts.map