/**
 * Create an extension for `micromark` to enable MDX JSX syntax.
 *
 * @param {Options | null | undefined} [options]
 *   Configuration (optional).
 * @returns {Extension}
 *   Extension for `micromark` that can be passed in `extensions` to enable MDX
 *   JSX syntax.
 */
export function mdxJsx(options?: Options | null | undefined): Extension;
import type { Options } from 'micromark-extension-mdx-jsx';
import type { Extension } from 'micromark-util-types';
