import type { Plugin } from 'unified';
import type { Root } from 'mdast';
/**
 * Replace the parsed Markdown tree with a single paragraph containing the
 * original source as a plain text node. No Markdown formatting is interpreted.
 * React will escape it.
 */
export declare const remarkIgnoreMarkdown: Plugin<[], Root>;
