import { type Options as RemarkDirectiveOptions } from 'remark-directive'; import { type Options as FrontmatterOptions } from 'remark-frontmatter'; import { type Options as GfmOptions } from 'remark-gfm'; import type { PluggableList } from 'unified'; export interface RemarkPluginOptions { /** * @link https://github.com/remarkjs/remark-gfm */ gfm?: GfmOptions; /** * @link https://github.com/remarkjs/remark-frontmatter */ frontmatter?: FrontmatterOptions; /** * @link https://github.com/remarkjs/remark-directive */ directive?: RemarkDirectiveOptions; } export declare function getRemarkPlugins({ extra, options, }?: { extra?: PluggableList | null; options?: RemarkPluginOptions | undefined; }): PluggableList;