import type { Root } from "hast";
import type { Plugin as UnifiedPlugin } from "unified";
import type { RehypeRemoveLinksOptions } from "./rehype-remove-links.types.js";
/**
 * UnifiedPlugin to remove links in html
 *
 * @deprecated Not required anymore
 */
declare const rehypeRemoveLinks: UnifiedPlugin<[RehypeRemoveLinksOptions], Root>;
export default rehypeRemoveLinks;
