/** * Builds the markdown asset path used for `llms.txt` / AI agent flows from a route slug. * * The site root slug (`/`) maps to `index.html.md` so the home page resolves like other HTML routes; * every other slug gets a `.md` suffix on the same path. * * @param routeSlug - URL path segment for the page (e.g. `/`, `/docs`, `/reference/petstore`) * @returns Path to the corresponding markdown file (e.g. `/index.html.md`, `/docs.md`) * * @example * getLlmsTxtMdPathBySlug('/'); * // returns '/index.html.md' * * @example * getLlmsTxtMdPathBySlug('/guides/getting-started'); * // returns '/guides/getting-started.md' */ export declare function getLlmsTxtMdPathBySlug(routeSlug: string): string; //# sourceMappingURL=get-llms-txt-md-path-by-slug.d.ts.map