/** * Flattens matched route params (which may be arrays for catch-all `[...slug]` * segments) into the `Record` shape the router value exposes. * * Catch-all segments are **joined with `/`** so no path information is lost — * `/docs/guides/intro` -> `{ slug: "guides/intro" }`, not `{ slug: "guides" }`. * This matches the client SPA normalizer and the RSC hydration normalizer, so * server and client agree. */ export declare function flattenRouteParams(params?: Record): Record; //# sourceMappingURL=flatten-route-params.d.ts.map