import type { Ast } from "./schemas.js"; /** * Parse a Markdown string into an mdast-shaped AST (Root). * - GFM and frontmatter are enabled by default. * - No sanitize, no ID insertion, no transformations. */ export declare function parseMarkdown(markdown: string): Ast; //# sourceMappingURL=parse-markdown.d.ts.map