import type { Root } from "hast";
import type { Plugin as UnifiedPlugin } from "unified";
/**
 * UnifiedPlugin to replace task lists in Confluence Storage Format
 *
 * @see {@link https://developer.atlassian.com/server/confluence/confluence-storage-format/ | Confluence Storage Format }
 */
declare const rehypeReplaceTaskList: UnifiedPlugin<[], Root>;
export default rehypeReplaceTaskList;
