/** * Plugin to transform `` and `
` * with KaTeX. * * @type {import('unified').Plugin<[Options?]|void[], Root>} */ export default function rehypeKatex( options: void | katex.KatexOptions | undefined ): | void | import('unified').Transformer export type Root = import('hast').Root export type Options = import('katex').KatexOptions import katex from 'katex'