#!/usr/bin/env node export { generateSlug, getFullSlug, escapeTemplateContent, toJsStringLiteral, } from "./lib/utils.js"; export { MDXToNextJSGenerator } from "./mdx-to-nextjs-generator.js"; /** * True when this file is what node was asked to run, rather than a module some * other process imported. Compares realpaths because npm installs the bin as a * symlink (`node_modules/.bin/doccupine` -> `dist/index.js`). */ export declare function isProcessEntrypoint(entry?: string | undefined, self?: string): boolean;