import type { DynamicParamTypesShort } from '../shared/lib/app-router-types'; import type { NormalizedPathname, NormalizedSearch } from './components/segment-cache/cache-key'; import type { RSCResponse } from './components/router-reducer/fetch-server-response'; import type { ParsedUrlQuery } from 'querystring'; export type RouteParamValue = string | Array | null; export declare function getRenderedSearch(response: RSCResponse | Response): NormalizedSearch; export declare function getRenderedPathname(response: RSCResponse | Response): NormalizedPathname; export declare function parseDynamicParamFromURLPart(paramType: DynamicParamTypesShort, pathnameParts: Array, partIndex: number): RouteParamValue; export declare function doesStaticSegmentAppearInURL(segment: string): boolean; export declare function getCacheKeyForDynamicParam(paramValue: RouteParamValue, renderedSearch: NormalizedSearch): string; export declare function urlToUrlWithoutFlightMarker(url: URL): URL; export declare function getParamValueFromCacheKey(paramCacheKey: string, paramType: DynamicParamTypesShort): string | string[]; export declare function urlSearchParamsToParsedUrlQuery(searchParams: URLSearchParams): ParsedUrlQuery;