import type { ComponentType } from 'react'; import type { Options as ReactMarkdownOptions, Components } from 'react-markdown'; import type { PluggableList } from 'unified'; export type RendererOptions = Omit & { remarkPlugins: PluggableList, rehypePlugins: PluggableList, components?: | Partial< Components & { [elem: string]: ComponentType, } > | undefined };