export declare const EN_GETTING_STARTED = "---\ntitle: Getting Started\norder: 1\n---\n\n# Getting Started\n\nWelcome to Monkey-Doc. This page is in **English** \u2014 use the language switcher in the top-right to switch to another language.\n\n## Installation\n\n```bash\nnpx monkey-doc init\nnpx monkey-doc dev\n```\n\n## How it works\n\nMonkey-Doc scans your `docs/` folder and builds navigation automatically. Organize pages in subfolders to get breadcrumbs and sections.\n"; export declare const EN_INSTALLATION = "---\ntitle: Installation\norder: 2\n---\n\n# Installation\n\nAdd Monkey-Doc to any project in seconds.\n\n## Prerequisites\n\n\n \n Make sure you have Node.js 18 or higher installed.\n \n \n Navigate to the root of your project.\n \n\n\n## Quick start\n\n```bash\nnpx monkey-doc init\nnpx monkey-doc dev\n```\n\nThat's it! Your documentation server starts at `http://localhost:5173`.\n\n## Manual install\n\n```bash\nnpm install -g monkey-doc\nmonkey-doc init\nmonkey-doc dev\n```\n\n\n Run `monkey-doc init` once per project. It creates a `/docs` folder with\n example files and a `monkey-doc.config.ts` configuration file.\n\n"; export declare const EN_WRITING_GUIDES = "---\ntitle: Writing Guides\norder: 3\n---\n\n# Writing Guides\n\nMonkey-Doc uses **MDX** \u2014 Markdown with JSX components.\n\nWrite plain Markdown and sprinkle in rich components wherever you need them.\n\n## Basic markdown\n\nAll standard Markdown syntax works out of the box:\n\n- **Bold**, _italic_, `inline code`\n- [Links](https://example.com)\n- Images: `![alt](url)`\n- Tables, blockquotes, horizontal rules\n\n## Frontmatter\n\nEvery page supports YAML frontmatter:\n\n```yaml\n---\ntitle: My Page Title\norder: 1\n---\n```\n\n- **title** \u2014 overrides the filename as the page title\n- **order** \u2014 controls navigation order (lower = first)\n\n## Using components\n\nImport is not required \u2014 all built-in components are globally available.\n\n```mdx\n\n Watch out for this edge case!\n\n```\n\nSee [Components](/en/components) for the full component reference.\n\n## Organizing with folders\n\nYou can nest pages inside folders to group related content. The folder structure maps directly to the sidebar navigation.\n\n\n \n \n \n \n \n \n \n \n \n \n \n\n\nEach folder automatically becomes a collapsible section in the sidebar. The section title is derived from the folder name (kebab-case is converted to title case).\n\nTo control the order of sections and pages, use the `order` frontmatter field \u2014 it works the same for files inside folders.\n\n\n Folders can be nested as deeply as you need. There is no limit on nesting depth.\n\n"; export declare const EN_COMPONENTS = "---\ntitle: Components\norder: 4\n---\n\n# Components\n\nMonkey-Doc ships with a set of built-in MDX components you can use anywhere.\n\n## Callout\n\nHighlight important information.\n\nThis is an **info** callout.\n\nThis is a **warning** callout.\n\nThis is a **success** callout.\n\n```mdx\nYour message here.\n```\n\n## Steps\n\nWalk users through a sequence.\n\n\n Do this first.\n Then do this.\n Finally, do this.\n\n\n```mdx\n\n Do this first.\n Then do this.\n\n```\n\n## Card\n\nGroup related content visually.\n\n\n\n```mdx\n\n```\n\n## Tabs\n\nDisplay content in tabbed panels.\n\n\n
npm install monkey-doc
\n
yarn add monkey-doc
\n
pnpm add monkey-doc
\n
\n\n```mdx\n\n
npm install monkey-doc
\n
yarn add monkey-doc
\n
pnpm add monkey-doc
\n
\n```\n\n## FileTree\n\nVisualize a folder structure.\n\n\n \n \n \n \n \n \n \n \n\n\nUse the `highlight` prop on a `` to draw attention to a specific file.\n\n```mdx\n\n \n \n \n \n \n \n\n```\n\n## CodeGroup\n\nShow multiple code snippets in tabs \u2014 ideal for package manager commands or multi-language examples.\n\n\n\n```bash\nnpm install monkey-doc\n```\n\n```bash\nyarn add monkey-doc\n```\n\n```bash\npnpm add monkey-doc\n```\n\n\n\n## Accordion\n\nCollapsible sections, great for FAQs or optional details.\n\n\n Monkey-Doc is a documentation tool focused on product guides and storytelling, as an alternative to Storybook.\n\n\n\n No \u2014 run `npx monkey-doc init` and you're ready to go. Zero configuration required.\n\n\n\n Yes, folders can be nested as deeply as needed. The sidebar is generated automatically from your file structure.\n\n\n```mdx\n\n Your answer here.\n\n\n\n This one starts expanded.\n\n```\n\n## Badge\n\nInline labels for status, versioning, or categorization.\n\n
\n Default\n Info\n Success\n Warning\n Error\n New\n Beta\n Deprecated\n
\n\nUse badges inline in prose too \u2014 for example, this feature is New in v2.\n\n```mdx\nNew\nBeta\nDeprecated\n```\n\nAvailable variants: `default` \u00B7 `info` \u00B7 `success` \u00B7 `warning` \u00B7 `error` \u00B7 `new` \u00B7 `beta` \u00B7 `deprecated`\n\n## Mermaid\n\nRender diagrams from [Mermaid](https://mermaid.js.org) syntax.\n\n```mermaid\nflowchart LR\n A[Write MDX] --> B[Run monkey-doc dev]\n B --> C{Happy?}\n C -- Yes --> D[Ship it \uD83D\uDE80]\n C -- No --> A\n```\n\n```mermaid\nsequenceDiagram\n Developer->>monkey-doc: npx monkey-doc dev\n monkey-doc->>Browser: Serves docs at localhost:5173\n Browser-->>Developer: Live preview with hot reload\n```\n\n## Property\n\nDocument a prop, parameter, or configuration option with its type, default value, and description.\n\n\n \n The title of the page or section.\n \n \n Controls the position of the page in the sidebar. Lower values appear first.\n \n \n A short description shown in search results and meta tags.\n \n \n Sets the color theme for the documentation site.\n \n \n This prop is no longer used. Remove it from your config.\n \n\n\n```mdx\n\n \n The title of the page.\n \n \n Position in the sidebar.\n \n\n```\n\n## Video\n\nEmbed a video from a URL or a YouTube / Vimeo link.\n\n```mdx\n