import type { Root } from "mdast";
import type { Plugin as UnifiedPlugin } from "unified";
/**
 * UnifiedPlugin to prevent \<Details\> elements from being removed from the tree.
 *
 * @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details}
 */
declare const remarkTransformDetails: UnifiedPlugin<Array<void>, Root>;
export default remarkTransformDetails;
