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