declare module "@mdx-js/react" { import * as React from "react"; type ComponentType = | "a" | "blockquote" | "code" | "delete" | "em" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "hr" | "img" | "inlineCode" | "li" | "ol" | "p" | "pre" | "pre.code" | "strong" | "sup" | "table" | "td" | "thematicBreak" | "tr" | "ul"; export type Components = { [key in ComponentType]?: React.ComponentType<{ className: string; children: React.ReactNode; }>; }; export interface MDXProviderProps { children: React.ReactNode; components: Components; } export class MDXProvider extends React.Component {} }