import type { ApiServer } from '../ApiServer'; export interface StaticSpaRouteOptions { prefix: `/${string}`; staticDir: string; entryFiles: readonly string[]; label: string; /** Serve the SPA entry at the exact prefix instead of normalizing to a trailing slash. */ serveExactRoot?: boolean; } export declare function registerStaticSpaRoutes(server: ApiServer, options: StaticSpaRouteOptions): void;