import type { ReactNode } from 'react'; import type { ErrorComponent } from './error-boundary'; import { InitialRouterStateParameters } from './router-reducer/create-initial-router-state'; export declare function urlToUrlWithoutFlightMarker(url: string): URL; declare type AppRouterProps = Omit, 'initialParallelRoutes'> & { initialHead: ReactNode; assetPrefix: string; }; export default function AppRouter(props: AppRouterProps & { globalErrorComponent: ErrorComponent; }): JSX.Element; export {};