import type { Root } from "mdast";
import type { Plugin as UnifiedPlugin } from "unified";
import type { RemarkReplaceMermaidOptions } from "./remark-replace-mermaid.types.js";
/**
 * UnifiedPlugin to remove footnotes from the AST.
 */
declare const remarkReplaceMermaid: UnifiedPlugin<[RemarkReplaceMermaidOptions], Root>;
export default remarkReplaceMermaid;
