import type { Root } from 'mdast'; import type { Plugin } from 'unified'; /** * Remark plugin that transforms fenced code blocks with `lang: "mermaid"` * into `` MDX JSX elements. * * Replaces literal `\n` sequences with `
` since mermaid flowcharts * use HTML break tags for line breaks within node labels. * * Paired with the `Mermaid` component from `@open-agent-toolkit/docs-theme` for client-side rendering. */ export declare const remarkMermaid: Plugin<[], Root>; //# sourceMappingURL=remark-mermaid.d.ts.map