import type { Root } from "mdast";
import type { Plugin as UnifiedPlugin } from "unified";
/**
 * UnifiedPlugin to remove footnotes from the AST.
 *
 * @see {@link https://github.com/syntax-tree/mdast#footnotes | Footnotes}
 * @see {@link https://github.com/syntax-tree/mdast#footnotedefinition | GFM Footnote Definition}
 * @see {@link https://github.com/syntax-tree/mdast#footnotereference | GFM Footnote Reference}
 */
declare const remarkRemoveFootnotes: UnifiedPlugin<Array<void>, Root>;
export default remarkRemoveFootnotes;
