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