import type MarkdownIt from "markdown-it/lib"; /** Parse MyST targets (``(name)=``), blockquotes (``% comment``) and block breaks (``+++``). * * Adapted from: mdit_py_plugins/myst_blocks/index.py */ export declare function mystBlockPlugin(md: MarkdownIt): void; /** Colon fence * This plugin directly mimics regular fences, but with `:` colons. * * Example: :::name contained text ::: * */ export declare function colonFencePlugin(md: MarkdownIt): void;