/** * Compare canonical client or server route paths in registration order. * * Specificity is decided at the first semantically different segment: static * segments precede dynamic segments, which precede terminal wildcards. Dynamic * parameter names do not affect specificity, so comparison continues to later * segments. A parent path precedes its descendants, and lexical comparison * resolves equivalent shapes. */ export declare function compareRoutePathsBySpecificity(leftPath: string, rightPath: string): number; //# sourceMappingURL=specificity.d.ts.map