import type { SpaHost } from '../utils/spaRouteTypes'; /** Statically scan a Vue page-source directory for SPA hosts — files * that call `createRouter({ history: createWebHistory('/...'), routes })` * from `vue-router`. The `createWebHistory` argument supplies the mount * path; the `routes` option supplies the route table (inline array or * identifier reference). Scans `.vue` SFC script blocks too. */ export declare const analyzeVueSpaRoutes: (vueDirectory: string) => Promise;