/** * Map `window.location.pathname` onto a candidate `pages/**.vue` route * file. Nuxt 2's file-based router materialises every `pages/*.vue` into * a route whose URL mirrors the directory layout, so `/about` maps to * `pages/about.vue` and `/` maps to `pages/index.vue`. * * Dynamic segments (`pages/_slug.vue` → `/something`) cannot be * recovered from the rendered URL alone — the underscore convention is * directory-side metadata. We emit the materialised path; the agent can * grep `pages/**` when the file is parameterised. */ declare function resolveNuxt2RouteFile(pathname: string): string | undefined; declare function agentDevtoolsNuxt2Plugin(): void; export { agentDevtoolsNuxt2Plugin as default, resolveNuxt2RouteFile };