import type { SpaHost } from '../utils/spaRouteTypes'; /** Statically scan an Angular page-source directory for SPA hosts — * files that both import `APP_BASE_HREF`/`provideRouter` and declare * an `APP_BASE_HREF` provider plus a literal `Routes` array. Returns * one entry per host with the mount path and leaf routes. Does not * load or execute user code. */ export declare const analyzeAngularSpaRoutes: (angularDirectory: string) => Promise;