import { IPlugin } from "@m2d/core";
/**
* HTML plugin for MDAST-to-DOCX conversion.
* Converts inline and block-level HTML content within markdown into structured MDAST nodes.
*
* Supports ` `, ``, ``, ``, `
`, `
`, ``, and other inline tags.
* Should be used before `image`, `table`, or other content plugins in the pipeline.
*
* @returns Configured HTML plugin for MDAST parsing.
*/
export declare const htmlPlugin: () => IPlugin;