import MarkdownIt from 'markdown-it'; /** * Markdown-it plugin to parse alternative frontmatter blocks delimited by '---'. * * This plugin detects blocks anywhere in a Markdown document that begin and end with '---', * and contain lines in key-value format (e.g., `key: value`). Blank lines within the block are allowed. * If a block is detected, it is rendered as a `` HTML element containing the block's content. */ export declare function altFrontmatterPlugin(md: MarkdownIt): void; //# sourceMappingURL=markdown-it-alt-frontmatter.d.ts.map