import type { Root } from "hast";
import type { Plugin as UnifiedPlugin } from "unified";
import type { RehypeAddNoticeOptions } from "./rehype-add-notice.types.js";
/**
 * UnifiedPlugin to add a notice to the AST.
 */
declare const rehypeAddNotice: UnifiedPlugin<[RehypeAddNoticeOptions], Root>;
export default rehypeAddNotice;
