import type { Route, RouteMatch } from "./types.js"; /** * Page route matcher for matching URL paths to page files. * Uses specificity-based sorting and shared route parsing utilities. * Suitable for page routing in both App Router and Pages Router. */ export declare class PageRouteMatcher { private routes; private cache; constructor(); addRoute(pattern: string, page: string): void; match(pathname: string): RouteMatch | null; clearCache(): void; getRoutes(): Route[]; } //# sourceMappingURL=pattern-route-matcher.d.ts.map