import { Root } from 'hast'; import { Options } from 'rehype-pretty-code'; import { Plugin } from './lib/index.js'; import { NextraConfig } from '../../types.generated.js'; import '@mdx-js/mdx'; import 'rehype-katex'; import 'better-react-mathjax'; declare const DEFAULT_REHYPE_PRETTY_CODE_OPTIONS: Options; declare const rehypeParseCodeMeta: Plugin<[ { defaultShowCopyCode?: boolean; } ], Root>; declare const rehypeAttachCodeMeta: Plugin<[ { search: NextraConfig['search']; } ], Root>; export { DEFAULT_REHYPE_PRETTY_CODE_OPTIONS, rehypeAttachCodeMeta, rehypeParseCodeMeta };