declare type Route = { path: string; isContainer?: boolean; children?: Route[]; index?: boolean; }; export declare class RoutePathNode { placeholder: boolean; children: Map>; slugName: string | null; restSlugName: string | null; optionalRestSlugName: string | null; route: T; insertRoute(route: T): void; insertRoutes(routes: T[]): void; smooth(): T[]; private _smoosh; private _insert; } export declare function getSortedRoutes(normalizedPages: string[]): string[]; export {};