import type { SpaHost } from '../utils/spaRouteTypes'; /** Statically scan a Svelte page-source directory for SPA hosts — * `.svelte` files that contain a `` block from * AbsoluteJS's Svelte router with one or more `` * children. Regex-based since `.svelte` files aren't directly TS-AST * parseable; covers the common case where the markup is literal. */ export declare const analyzeSvelteSpaRoutes: (svelteDirectory: string) => Promise;