import type { PluginSimple } from "markdown-it"; import { type PackageName, type Version } from "./jsr.js"; /** * Options for the {@link jsrRef} plugin. */ export interface Options { package: PackageName; version?: Version | "stable" | "unstable"; cachePath?: string; } /** * Create a markdown-it plugin to render links to JSR references. * @param options Options for the plugin. * @returns A markdown-it plugin. */ export declare function jsrRef(options: Options): Promise; //# sourceMappingURL=plugin.d.ts.map