import type { Root } from "mdast";
import type { Plugin as UnifiedPlugin } from "unified";
/**
 * UnifiedPlugin to remove mdx code from the AST.
 *
 * @see {@link https://github.com/syntax-tree/mdast-util-mdx-expression#syntax-tree}
 * @see {@link https://github.com/syntax-tree/mdast-util-mdx-jsx#syntax-tree}
 * @see {@link https://github.com/syntax-tree/mdast-util-mdxjs-esm#syntax-tree}
 */
declare const remarkRemoveMdxCode: UnifiedPlugin<Array<void>, Root>;
export default remarkRemoveMdxCode;
