import type { SpaHost } from '../utils/spaRouteTypes'; /** Statically scan a React page-source directory for SPA hosts — * files that call `createBrowserRouter(routes, { basename })` from * `react-router-dom`. The first argument supplies the routes (inline * array or identifier reference), the second arg's `basename` * supplies the mount path. */ export declare const analyzeReactSpaRoutes: (reactDirectory: string) => Promise;