export { log404 };
export { getRoutesInfo };
import type { PageRoutes } from '../../../../shared/route/index.js';
import type { GlobalContextServerInternal } from '../../globalContext.js';
declare function log404(pageContext: {
    urlPathname: string;
    errorWhileRendering: null | Error;
    isClientSideNavigation: boolean;
    _pageRoutes: PageRoutes;
    _globalContext: GlobalContextServerInternal;
}): Promise<void>;
declare function getRoutesInfo(pageRoutes: PageRoutes): string | null;
