import type { Root } from "hast";
import type { Plugin as UnifiedPlugin } from "unified";
/**
 * UnifiedPlugin to replace `<del>` HastElements with a `<span>`
 * tag with the `text-decoration: line-through;` style.
 *
 * @see {@link https://developer.atlassian.com/server/confluence/confluence-storage-format/ | Confluence Storage Format }
 *
 * @example
 *  <del>Deleted text</del>
 *  // becomes
 *  <span style="text-decoration: line-through;">Deleted text</span>
 */
declare const rehypeReplaceStrikethrough: UnifiedPlugin<[], Root>;
export default rehypeReplaceStrikethrough;
