import type { MarkedExtension } from 'marked'; import type { Options } from './types.js'; /** * A [marked](https://marked.js.org/) extension to support [GFM footnotes](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#footnotes). */ export default function markedFootnote(options?: Options): MarkedExtension; export type { Footnote, FootnoteRef, Footnotes, Options } from './types.js';