import { Root } from 'hast'; import { Plugin } from './lib/index.js'; import { MathJaxOptions } from '../../types.js'; import 'mdast'; import 'next'; import 'react'; import 'zod'; import '../schemas.js'; import 'rehype-katex/lib/index.js'; import 'better-react-mathjax'; import 'rehype-pretty-code'; import '../../types.generated.js'; import '@mdx-js/mdx'; import 'rehype-katex'; /** * Wraps math in a `` component so that it can be rendered by `better-react-mathjax`. */ declare const rehypeBetterReactMathjax: Plugin<[ Opts: MathJaxOptions, isRemoteContent: boolean ], Root>; export { rehypeBetterReactMathjax };