/**
* Add support for MDX (JSX: ``, export/imports: `export {x}
* from 'y'`; and expressions: `{1 + 1}`).
*
* @this {Processor}
* Processor.
* @param {Readonly | null | undefined} [options]
* Configuration (optional).
* @returns {undefined}
* Nothing.
*/
export default function remarkMdx(this: Processor, options?: Readonly | null | undefined): undefined;
/**
* Configuration.
*/
export type Options = MicromarkOptions & ToMarkdownOptions;
import type { Processor } from 'unified';
import type { Options as MicromarkOptions } from 'micromark-extension-mdxjs';
import type { ToMarkdownOptions } from 'mdast-util-mdx';
//# sourceMappingURL=index.d.ts.map