/// <reference types="react" />
import type { Pluggable } from 'unified';
export interface SyntaxMdxProps {
    children: string;
    enableMermaid?: boolean;
    fullFeatured?: boolean;
    rehypePlugins?: Pluggable[];
    remarkPlugins?: Pluggable[];
}
declare const SyntaxMdx: import("react").NamedExoticComponent<SyntaxMdxProps>;
export default SyntaxMdx;
