Files
med-notes/.pnpm-store/v10/files/10/5b34d7709536a8cc64f12a9f5cc55228962ad08165c1844cc630a7814e2346b796f72f25e62e417a41f185cc3facf739951c4d5c6f6b317db5c893658374a6
2025-05-09 05:30:08 +02:00

24 lines
884 B
Plaintext

import * as React from 'react';
import { R as RouterProviderProps$1 } from './fog-of-war-1hWhK5ey.mjs';
import { R as RouterInit } from './route-data-5OzAzQtT.mjs';
type RouterProviderProps = Omit<RouterProviderProps$1, "flushSync">;
declare function RouterProvider(props: Omit<RouterProviderProps, "flushSync">): React.JSX.Element;
interface HydratedRouterProps {
/**
* Context object to passed through to `createBrowserRouter` and made available
* to `clientLoader`/`clientActon` functions
*/
unstable_getContext?: RouterInit["unstable_getContext"];
}
/**
* Framework-mode router component to be used in `entry.client.tsx` to hydrate a
* router from a `ServerRouter`
*
* @category Component Routers
*/
declare function HydratedRouter(props: HydratedRouterProps): React.JSX.Element;
export { HydratedRouter, RouterProvider, type RouterProviderProps };