/** * remark plugin: rewrite ```mermaid fenced code blocks into a neutral *
marker that carries the raw diagram source, instead of * letting the syntax highlighter render them as source code. * * The marker is platform-neutral: the diagram source is preserved verbatim so * each surface can render it its own way. On web it is picked up and rendered * to SVG client-side after mount (see DocsContent). */ /** * Unified/remark plugin. Runs on the mdast tree before it is converted to * rehype, so the mermaid fence never reaches the syntax highlighter. */ export declare function remarkMermaid(): (tree: unknown) => void; //# sourceMappingURL=remark-mermaid.d.ts.map