/** Convert a sitemap URL (which includes app.baseURL) to a logical route. */ export declare function toLogicalRoute(pathOrUrl: string, baseURL: string): string; /** Apply app.baseURL to a logical route exactly once. */ export declare function toDeployedRoute(route: string, baseURL: string): string; /** * Normalize rows written by older releases, which stored deployed paths. * A sitemap match disambiguates those rows from real logical routes whose * first segment happens to match app.baseURL. */ export declare function normalizePersistedRoute(route: string, sitemapRoutes: ReadonlySet, baseURL: string): string;