/** * reactNativeDocs.ts * Preset for react-native-docs-mcp: github.com/facebook/react-native-website.git * * Structure verified directly against the repo (Docusaurus-based): * - Docs live at root `docs/` (not under `website/`), 230 .md + 9 .mdx files. * - 213 of 241 files sit flat at `docs/` root with no section; only * `the-new-architecture/`, `legacy/`, and `releases/` are real subfolders * (older versioned snapshots may lack some — the server filters advertised * sections to those that exist on disk at runtime). * - "latest" targets the unversioned root `docs/` folder; pinned versions * target `website/versioned_docs/version-X.YY/` inside the same clone. * - Docusaurus routes by frontmatter `id` when present (in all versions), so * the engine resolves ids into canonical doc paths/slugs at index time * (docUrl.useFrontmatterId). * - website/blog/ is a separate content root and is out of scope for v1. */ import type { DocsMcpPreset } from '../config.js'; export declare const LATEST_VERSION = "latest"; export declare function resolveReactNativeDocsPreset(version?: string): DocsMcpPreset; //# sourceMappingURL=reactNativeDocs.d.ts.map