/** * Browser-safe entry point for @mrsf/rehype-mrsf. * * This entry is automatically selected by bundlers (Vite, webpack, esbuild) * via the `"browser"` export condition in package.json. It supports the * `comments` and `loader` provisioning modes — no Node.js file-system APIs. * * You do NOT need to import this directly. Just use: * import { rehypeMrsf } from "@mrsf/rehype-mrsf"; * * Your bundler will resolve to this file automatically when targeting * a browser environment. */ import type { MrsfPluginOptions } from "./types.js"; export type { MrsfPluginOptions, SlimComment, CommentThread, LineMap, CommentLoader } from "./types.js"; /** * The rehype plugin function (browser-safe). * * Supports `comments` (inline data) and `loader` (custom function) options. */ export declare const rehypeMrsf: (options?: MrsfPluginOptions) => (tree: import("hast").Root) => void; export default rehypeMrsf; //# sourceMappingURL=browser.d.ts.map