import type { Routes } from './Routes.js'; export type Path = `/${string}`; export type RouteKey = Path | 'default' | '404'; export declare function StringIsValidRouteKey(string: string, routes: Routes): string is RouteKey; export declare function StringIsPath(string: string): string is Path; export declare function RouteKeyIsPath(path: RouteKey): path is Path; //# sourceMappingURL=RouteTypes.d.ts.map