import { Transformer } from 'unified'; import { Root } from 'mdast'; interface RemarkAdmonitionOptions { tag?: string; /** * Map type to another type */ typeMap?: Record; } /** * Remark Plugin to support Admonition syntax * * Useful when Migrating from Docusaurus * * @deprecated Use `remarkDirectiveAdmonition` with `remark-directive` configured instead. */ declare function remarkAdmonition(options?: RemarkAdmonitionOptions): Transformer; export { type RemarkAdmonitionOptions, remarkAdmonition };