import type { FlightDataPath } from '../../../shared/lib/app-router-types'; import type { AppRouterState } from './router-reducer-types'; export interface InitialRouterStateParameters { navigatedAt: number; initialCanonicalUrlParts: string[]; initialRenderedSearch: string; initialFlightData: FlightDataPath[]; initialCouldBeIntercepted: boolean; initialPrerendered: boolean; location: Location | null; } export declare function createInitialRouterState({ navigatedAt, initialFlightData, initialCanonicalUrlParts, initialRenderedSearch, initialCouldBeIntercepted, initialPrerendered, location, }: InitialRouterStateParameters): AppRouterState;