import type { PluginOptions } from "./types"; import type MarkdownIt from "markdown-it"; /** * A markdown-it plugin, which allows authors to embed content from various providers. * * @example * ```Markdown * @[A classic rick-roll](https://www.youtube.com/watch?v=dQw4w9WgXcQ "Watch this video!") * ``` * Output: * ```HTML * ``` */ export default function markdownItEmbedPlugin(md: MarkdownIt, userOptions?: PluginOptions): void;