import { I as InitialEntry, T as To, i as RelativeRoutingType, w as NonIndexRouteObject, ag as LazyRouteFunction, q as IndexRouteObject, a as Location, A as Action, aD as Navigator, d as Router$1, V as RouterInit, aZ as FutureConfig$1, H as HydrationState, D as DataStrategyFunction, X as PatchRoutesOnNavigationFunction, p as RouteObject, aF as RouteMatch, o as Params, U as UIMatch, af as HTMLFormMethod, ad as FormEncType, a_ as RouteManifest, a$ as ServerRouteModule, z as MiddlewareEnabled, y as unstable_RouterContextProvider, x as AppLoadContext, ah as LoaderFunctionArgs, a7 as ActionFunctionArgs, e as RouteModules, Y as DataRouteObject, K as ClientLoaderFunction, a0 as StaticHandlerContext, aK as PageLinkDescriptor, b0 as History, $ as GetScrollRestorationKeyFunction, f as NavigateOptions, a1 as Fetcher, h as SerializeFrom, B as BlockerFunction, b1 as CreateStaticHandlerOptions$1, Z as StaticHandler } from './routeModules-BR2FO0ix.js'; import * as React from 'react'; declare function mapRouteProperties(route: RouteObject): Partial & { hasErrorBoundary: boolean; }; declare const hydrationRouteProperties: (keyof RouteObject)[]; /** * @category Data Routers */ interface MemoryRouterOpts { /** * Basename path for the application. */ basename?: string; /** * Function to provide the initial context values for all client side * navigations/fetches */ unstable_getContext?: RouterInit["unstable_getContext"]; /** * Future flags to enable for the router. */ future?: Partial; /** * Hydration data to initialize the router with if you have already performed * data loading on the server. */ hydrationData?: HydrationState; /** * Initial entries in the in-memory history stack */ initialEntries?: InitialEntry[]; /** * Index of {@link initialEntries} the application should initialize to */ initialIndex?: number; /** * Override the default data strategy of loading in parallel. * Only intended for advanced usage. */ dataStrategy?: DataStrategyFunction; /** * Lazily define portions of the route tree on navigations. */ patchRoutesOnNavigation?: PatchRoutesOnNavigationFunction; } /** * Create a new {@link DataRouter} that manages the application path using an * in-memory [`History`](https://developer.mozilla.org/en-US/docs/Web/API/History) * stack. Useful for non-browser environments without a DOM API. * * @public * @category Data Routers * @mode data * @param routes Application routes * @param opts Options * @param {MemoryRouterOpts.basename} opts.basename n/a * @param {MemoryRouterOpts.dataStrategy} opts.dataStrategy n/a * @param {MemoryRouterOpts.future} opts.future n/a * @param {MemoryRouterOpts.unstable_getContext} opts.unstable_getContext n/a * @param {MemoryRouterOpts.hydrationData} opts.hydrationData n/a * @param {MemoryRouterOpts.initialEntries} opts.initialEntries n/a * @param {MemoryRouterOpts.initialIndex} opts.initialIndex n/a * @param {MemoryRouterOpts.patchRoutesOnNavigation} opts.patchRoutesOnNavigation n/a * @returns An initialized {@link DataRouter} to pass to {@link RouterProvider | ``} */ declare function createMemoryRouter(routes: RouteObject[], opts?: MemoryRouterOpts): Router$1; /** * @category Types */ interface RouterProviderProps { /** * The {@link DataRouter} instance to use for navigation and data fetching. */ router: Router$1; /** * The [`ReactDOM.flushSync`](https://react.dev/reference/react-dom/flushSync) * implementation to use for flushing updates. * * You usually don't have to worry about this: * - The `RouterProvider` exported from `react-router/dom` handles this internally for you * - If you are rendering in a non-DOM environment, you can import * `RouterProvider` from `react-router` and ignore this prop */ flushSync?: (fn: () => unknown) => undefined; } /** * Render the UI for the given {@link DataRouter}. This component should * typically be at the top of an app's element tree. * * @example * import { createBrowserRouter } from "react-router"; * import { RouterProvider } from "react-router/dom"; * import { createRoot } from "react-dom/client"; * * const router = createBrowserRouter(routes); * createRoot(document.getElementById("root")).render( * * ); * * @public * @category Data Routers * @mode data * @param props Props * @param {RouterProviderProps.flushSync} props.flushSync n/a * @param {RouterProviderProps.router} props.router n/a * @returns React element for the rendered router */ declare function RouterProvider({ router, flushSync: reactDomFlushSyncImpl, }: RouterProviderProps): React.ReactElement; /** * @category Types */ interface MemoryRouterProps { /** * Application basename */ basename?: string; /** * Nested {@link Route} elements describing the route tree */ children?: React.ReactNode; /** * Initial entries in the in-memory history stack */ initialEntries?: InitialEntry[]; /** * Index of {@link initialEntries} the application should initialize to */ initialIndex?: number; } /** * A declarative {@link Router | ``} that stores all entries in memory. * * @public * @category Declarative Routers * @mode declarative * @param props Props * @param {MemoryRouterProps.basename} props.basename n/a * @param {MemoryRouterProps.children} props.children n/a * @param {MemoryRouterProps.initialEntries} props.initialEntries n/a * @param {MemoryRouterProps.initialIndex} props.initialIndex n/a * @returns A declarative in memory router for client side routing. */ declare function MemoryRouter({ basename, children, initialEntries, initialIndex, }: MemoryRouterProps): React.ReactElement; /** * @category Types */ interface NavigateProps { /** * The path to navigate to. This can be a string or a {@link Path} object */ to: To; /** * Whether to replace the current entry in the [`History`](https://developer.mozilla.org/en-US/docs/Web/API/History) * stack */ replace?: boolean; /** * State to pass to the new {@link Location} to store in [`history.state`](https://developer.mozilla.org/en-US/docs/Web/API/History/state). */ state?: any; /** * How to interpret relative routing in the {@link to} prop. * See {@link RelativeRoutingType}. */ relative?: RelativeRoutingType; } /** * A component-based version of {@link useNavigate} to use in a * [`React.Component` class](https://react.dev/reference/react/Component) where * hooks cannot be used. * * It's recommended to avoid using this component in favor of {@link useNavigate}. * * @example * * * @public * @category Components * @param props Props * @param {NavigateProps.relative} props.relative n/a * @param {NavigateProps.replace} props.replace n/a * @param {NavigateProps.state} props.state n/a * @param {NavigateProps.to} props.to n/a * @returns {void} * */ declare function Navigate({ to, replace, state, relative, }: NavigateProps): null; /** * @category Types */ interface OutletProps { /** * Provides a context value to the element tree below the outlet. Use when * the parent route needs to provide values to child routes. * * ```tsx * * ``` * * Access the context with {@link useOutletContext}. */ context?: unknown; } /** * Renders the matching child route of a parent route or nothing if no child * route matches. * * @example * import { Outlet } from "react-router"; * * export default function SomeParent() { * return ( *
*

Parent Content

* *
* ); * } * * @public * @category Components * @param props Props * @param {OutletProps.context} props.context n/a * @returns React element for the rendered outlet or `null` if no child route matches. */ declare function Outlet(props: OutletProps): React.ReactElement | null; /** * @category Types */ interface PathRouteProps { /** * Whether the path should be case-sensitive. Defaults to `false`. */ caseSensitive?: NonIndexRouteObject["caseSensitive"]; /** * The path pattern to match. If unspecified or empty, then this becomes a * layout route. */ path?: NonIndexRouteObject["path"]; /** * The unique identifier for this route (for use with {@link DataRouter}s) */ id?: NonIndexRouteObject["id"]; /** * A function that returns a promise that resolves to the route object. * Used for code-splitting routes. * See [`lazy`](../../start/data/route-object#lazy). */ lazy?: LazyRouteFunction; /** * The route loader. * See [`loader`](../../start/data/route-object#loader). */ loader?: NonIndexRouteObject["loader"]; /** * The route action. * See [`action`](../../start/data/route-object#action). */ action?: NonIndexRouteObject["action"]; hasErrorBoundary?: NonIndexRouteObject["hasErrorBoundary"]; /** * The route shouldRevalidate function. * See [`shouldRevalidate`](../../start/data/route-object#shouldRevalidate). */ shouldRevalidate?: NonIndexRouteObject["shouldRevalidate"]; /** * The route handle. */ handle?: NonIndexRouteObject["handle"]; /** * Whether this is an index route. */ index?: false; /** * Child Route components */ children?: React.ReactNode; /** * The React element to render when this Route matches. * Mutually exclusive with {@link Component}. */ element?: React.ReactNode | null; /** * The React element to render while this router is loading data. * Mutually exclusive with {@link HydrateFallback}. */ hydrateFallbackElement?: React.ReactNode | null; /** * The React element to render at this route if an error occurs. * Mutually exclusive with {@link ErrorBoundary}. */ errorElement?: React.ReactNode | null; /** * The React Component to render when this route matches. * Mutually exclusive with {@link element}. */ Component?: React.ComponentType | null; /** * The React Component to render while this router is loading data. * Mutually exclusive with {@link hydrateFallbackElement}. */ HydrateFallback?: React.ComponentType | null; /** * The React Component to render at this route if an error occurs. * Mutually exclusive with {@link errorElement}. */ ErrorBoundary?: React.ComponentType | null; } /** * @category Types */ interface LayoutRouteProps extends PathRouteProps { } /** * @category Types */ interface IndexRouteProps { /** * Whether the path should be case-sensitive. Defaults to `false`. */ caseSensitive?: IndexRouteObject["caseSensitive"]; /** * The path pattern to match. If unspecified or empty, then this becomes a * layout route. */ path?: IndexRouteObject["path"]; /** * The unique identifier for this route (for use with {@link DataRouter}s) */ id?: IndexRouteObject["id"]; /** * A function that returns a promise that resolves to the route object. * Used for code-splitting routes. * See [`lazy`](../../start/data/route-object#lazy). */ lazy?: LazyRouteFunction; /** * The route loader. * See [`loader`](../../start/data/route-object#loader). */ loader?: IndexRouteObject["loader"]; /** * The route action. * See [`action`](../../start/data/route-object#action). */ action?: IndexRouteObject["action"]; hasErrorBoundary?: IndexRouteObject["hasErrorBoundary"]; /** * The route shouldRevalidate function. * See [`shouldRevalidate`](../../start/data/route-object#shouldRevalidate). */ shouldRevalidate?: IndexRouteObject["shouldRevalidate"]; /** * The route handle. */ handle?: IndexRouteObject["handle"]; /** * Whether this is an index route. */ index: true; /** * Child Route components */ children?: undefined; /** * The React element to render when this Route matches. * Mutually exclusive with {@link Component}. */ element?: React.ReactNode | null; /** * The React element to render while this router is loading data. * Mutually exclusive with {@link HydrateFallback}. */ hydrateFallbackElement?: React.ReactNode | null; /** * The React element to render at this route if an error occurs. * Mutually exclusive with {@link ErrorBoundary}. */ errorElement?: React.ReactNode | null; /** * The React Component to render when this route matches. * Mutually exclusive with {@link element}. */ Component?: React.ComponentType | null; /** * The React Component to render while this router is loading data. * Mutually exclusive with {@link hydrateFallbackElement}. */ HydrateFallback?: React.ComponentType | null; /** * The React Component to render at this route if an error occurs. * Mutually exclusive with {@link errorElement}. */ ErrorBoundary?: React.ComponentType | null; } type RouteProps = PathRouteProps | LayoutRouteProps | IndexRouteProps; /** * Configures an element to render when a pattern matches the current location. * It must be rendered within a {@link Routes} element. Note that these routes * do not participate in data loading, actions, code splitting, or any other * route module features. * * @example * // Usually used in a declarative router * function App() { * return ( * * * } /> * } /> * } /> * * * ); * } * * // But can be used with a data router as well if you prefer the JSX notation * const routes = createRoutesFromElements( * <> * * * * * ); * * const router = createBrowserRouter(routes); * * function App() { * return ; * } * * @public * @category Components * @param props Props * @param {PathRouteProps.action} props.action n/a * @param {PathRouteProps.caseSensitive} props.caseSensitive n/a * @param {PathRouteProps.Component} props.Component n/a * @param {PathRouteProps.children} props.children n/a * @param {PathRouteProps.element} props.element n/a * @param {PathRouteProps.ErrorBoundary} props.ErrorBoundary n/a * @param {PathRouteProps.errorElement} props.errorElement n/a * @param {PathRouteProps.handle} props.handle n/a * @param {PathRouteProps.HydrateFallback} props.HydrateFallback n/a * @param {PathRouteProps.hydrateFallbackElement} props.hydrateFallbackElement n/a * @param {PathRouteProps.id} props.id n/a * @param {PathRouteProps.index} props.index n/a * @param {PathRouteProps.lazy} props.lazy n/a * @param {PathRouteProps.loader} props.loader n/a * @param {PathRouteProps.path} props.path n/a * @param {PathRouteProps.shouldRevalidate} props.shouldRevalidate n/a * @returns {void} */ declare function Route$1(props: RouteProps): React.ReactElement | null; /** * @category Types */ interface RouterProps { /** * The base path for the application. This is prepended to all locations */ basename?: string; /** * Nested {@link Route} elements describing the route tree */ children?: React.ReactNode; /** * The location to match against. Defaults to the current location. * This can be a string or a {@link Location} object. */ location: Partial | string; /** * The type of navigation that triggered this location change. * Defaults to {@link NavigationType.Pop}. */ navigationType?: Action; /** * The navigator to use for navigation. This is usually a history object * or a custom navigator that implements the {@link Navigator} interface. */ navigator: Navigator; /** * Whether this router is static or not (used for SSR). If `true`, the router * will not be reactive to location changes. */ static?: boolean; } /** * Provides location context for the rest of the app. * * Note: You usually won't render a `` directly. Instead, you'll render a * router that is more specific to your environment such as a {@link BrowserRouter} * in web browsers or a {@link ServerRouter} for server rendering. * * @public * @category Declarative Routers * @mode declarative * @param props Props * @param {RouterProps.basename} props.basename n/a * @param {RouterProps.children} props.children n/a * @param {RouterProps.location} props.location n/a * @param {RouterProps.navigationType} props.navigationType n/a * @param {RouterProps.navigator} props.navigator n/a * @param {RouterProps.static} props.static n/a * @returns React element for the rendered router or `null` if the location does * not match the {@link props.basename} */ declare function Router({ basename: basenameProp, children, location: locationProp, navigationType, navigator, static: staticProp, }: RouterProps): React.ReactElement | null; /** * @category Types */ interface RoutesProps { /** * Nested {@link Route} elements */ children?: React.ReactNode; /** * The {@link Location} to match against. Defaults to the current location. */ location?: Partial | string; } /** * Renders a branch of {@link Route | ``s} that best matches the current * location. Note that these routes do not participate in [data loading](../../start/framework/route-module#loader), * [`action`](../../start/framework/route-module#action), code splitting, or * any other [route module](../../start/framework/route-module) features. * * @example * import { Route, Routes } from "react-router"; * * * } /> * } /> * }> * * * @public * @category Components * @param props Props * @param {RoutesProps.children} props.children n/a * @param {RoutesProps.location} props.location n/a * @returns React element for the rendered routes or `null` if no route matches */ declare function Routes({ children, location, }: RoutesProps): React.ReactElement | null; interface AwaitResolveRenderFunction { (data: Awaited): React.ReactNode; } /** * @category Types */ interface AwaitProps { /** * When using a function, the resolved value is provided as the parameter. * * ```tsx [2] * * {(resolvedReviews) => } * * ``` * * When using React elements, {@link useAsyncValue} will provide the * resolved value: * * ```tsx [2] * * * * * function Reviews() { * const resolvedReviews = useAsyncValue(); * return
...
; * } * ``` */ children: React.ReactNode | AwaitResolveRenderFunction; /** * The error element renders instead of the `children` when the [`Promise`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) * rejects. * * ```tsx * Oops} * resolve={reviewsPromise} * > * * * ``` * * To provide a more contextual error, you can use the {@link useAsyncError} in a * child component * * ```tsx * } * resolve={reviewsPromise} * > * * * * function ReviewsError() { * const error = useAsyncError(); * return
Error loading reviews: {error.message}
; * } * ``` * * If you do not provide an `errorElement`, the rejected value will bubble up * to the nearest route-level [`ErrorBoundary`](../../start/framework/route-module#errorboundary) * and be accessible via the {@link useRouteError} hook. */ errorElement?: React.ReactNode; /** * Takes a [`Promise`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) * returned from a [`loader`](../../start/framework/route-module#loader) to be * resolved and rendered. * * ```tsx * import { Await, useLoaderData } from "react-router"; * * export async function loader() { * let reviews = getReviews(); // not awaited * let book = await getBook(); * return { * book, * reviews, // this is a promise * }; * } * * export default function Book() { * const { * book, * reviews, // this is the same promise * } = useLoaderData(); * * return ( *
*

{book.title}

*

{book.description}

* }> * * * * *
* ); * } * ``` */ resolve: Resolve; } /** * Used to render promise values with automatic error handling. * * **Note:** `` expects to be rendered inside a [``](https://react.dev/reference/react/Suspense) * * @example * import { Await, useLoaderData } from "react-router"; * * export async function loader() { * // not awaited * const reviews = getReviews(); * // awaited (blocks the transition) * const book = await fetch("/api/book").then((res) => res.json()); * return { book, reviews }; * } * * function Book() { * const { book, reviews } = useLoaderData(); * return ( *
*

{book.title}

*

{book.description}

* }> * Could not load reviews 😬
* } * children={(resolvedReviews) => ( * * )} * /> *
* * ); * } * * @public * @category Components * @mode framework * @mode data * @param props Props * @param {AwaitProps.children} props.children n/a * @param {AwaitProps.errorElement} props.errorElement n/a * @param {AwaitProps.resolve} props.resolve n/a * @returns React element for the rendered awaited value */ declare function Await({ children, errorElement, resolve, }: AwaitProps): React.JSX.Element; /** * Creates a route config from a React "children" object, which is usually * either a `` element or an array of them. Used internally by * `` to create a route config from its children. * * @category Utils * @mode data * @param children The React children to convert into a route config * @param parentPath The path of the parent route, used to generate unique IDs. * @returns An array of {@link RouteObject}s that can be used with a {@link DataRouter} */ declare function createRoutesFromChildren(children: React.ReactNode, parentPath?: number[]): RouteObject[]; /** * Create route objects from JSX elements instead of arrays of objects. * * @example * const routes = createRoutesFromElements( * <> * * * * * ); * * const router = createBrowserRouter(routes); * * function App() { * return ; * } * * @name createRoutesFromElements * @public * @category Utils * @mode data * @param children The React children to convert into a route config * @param parentPath The path of the parent route, used to generate unique IDs. * This is used for internal recursion and is not intended to be used by the * application developer. * @returns An array of {@link RouteObject}s that can be used with a {@link DataRouter} */ declare const createRoutesFromElements: typeof createRoutesFromChildren; /** * Renders the result of {@link matchRoutes} into a React element. * * @public * @category Utils * @param matches The array of {@link RouteMatch | route matches} to render * @returns A React element that renders the matched routes or `null` if no matches */ declare function renderMatches(matches: RouteMatch[] | null): React.ReactElement | null; declare function useRouteComponentProps(): { params: Readonly>; loaderData: any; actionData: any; matches: UIMatch[]; }; type RouteComponentProps = ReturnType; type RouteComponentType = React.ComponentType; declare function WithComponentProps({ children, }: { children: React.ReactElement; }): React.ReactElement>; declare function withComponentProps(Component: RouteComponentType): () => React.ReactElement<{ params: Readonly>; loaderData: any; actionData: any; matches: UIMatch[]; }, string | React.JSXElementConstructor>; declare function useHydrateFallbackProps(): { params: Readonly>; loaderData: any; actionData: any; }; type HydrateFallbackProps = ReturnType; type HydrateFallbackType = React.ComponentType; declare function WithHydrateFallbackProps({ children, }: { children: React.ReactElement; }): React.ReactElement>; declare function withHydrateFallbackProps(HydrateFallback: HydrateFallbackType): () => React.ReactElement<{ params: Readonly>; loaderData: any; actionData: any; }, string | React.JSXElementConstructor>; declare function useErrorBoundaryProps(): { params: Readonly>; loaderData: any; actionData: any; error: unknown; }; type ErrorBoundaryProps = ReturnType; type ErrorBoundaryType = React.ComponentType; declare function WithErrorBoundaryProps({ children, }: { children: React.ReactElement; }): React.ReactElement>; declare function withErrorBoundaryProps(ErrorBoundary: ErrorBoundaryType): () => React.ReactElement<{ params: Readonly>; loaderData: any; actionData: any; error: unknown; }, string | React.JSXElementConstructor>; type ParamKeyValuePair = [string, string]; type URLSearchParamsInit = string | ParamKeyValuePair[] | Record | URLSearchParams; /** Creates a URLSearchParams object using the given initializer. This is identical to `new URLSearchParams(init)` except it also supports arrays as values in the object form of the initializer instead of just strings. This is convenient when you need multiple values for a given key, but don't want to use an array initializer. For example, instead of: ```tsx let searchParams = new URLSearchParams([ ['sort', 'name'], ['sort', 'price'] ]); ``` you can do: ``` let searchParams = createSearchParams({ sort: ['name', 'price'] }); ``` @category Utils */ declare function createSearchParams(init?: URLSearchParamsInit): URLSearchParams; type JsonObject = { [Key in string]: JsonValue; } & { [Key in string]?: JsonValue | undefined; }; type JsonArray = JsonValue[] | readonly JsonValue[]; type JsonPrimitive = string | number | boolean | null; type JsonValue = JsonPrimitive | JsonObject | JsonArray; type SubmitTarget = HTMLFormElement | HTMLButtonElement | HTMLInputElement | FormData | URLSearchParams | JsonValue | null; /** * Submit options shared by both navigations and fetchers */ interface SharedSubmitOptions { /** * The HTTP method used to submit the form. Overrides `
`. * Defaults to "GET". */ method?: HTMLFormMethod; /** * The action URL path used to submit the form. Overrides ``. * Defaults to the path of the current route. */ action?: string; /** * The encoding used to submit the form. Overrides ``. * Defaults to "application/x-www-form-urlencoded". */ encType?: FormEncType; /** * Determines whether the form action is relative to the route hierarchy or * the pathname. Use this if you want to opt out of navigating the route * hierarchy and want to instead route based on /-delimited URL segments */ relative?: RelativeRoutingType; /** * In browser-based environments, prevent resetting scroll after this * navigation when using the component */ preventScrollReset?: boolean; /** * Enable flushSync for this submission's state updates */ flushSync?: boolean; } /** * Submit options available to fetchers */ interface FetcherSubmitOptions extends SharedSubmitOptions { } /** * Submit options available to navigations */ interface SubmitOptions extends FetcherSubmitOptions { /** * Set `true` to replace the current entry in the browser's history stack * instead of creating a new one (i.e. stay on "the same page"). Defaults * to `false`. */ replace?: boolean; /** * State object to add to the history stack entry for this navigation */ state?: any; /** * Indicate a specific fetcherKey to use when using navigate=false */ fetcherKey?: string; /** * navigate=false will use a fetcher instead of a navigation */ navigate?: boolean; /** * Enable view transitions on this submission navigation */ viewTransition?: boolean; } type ServerRouteManifest = RouteManifest>; interface ServerRoute extends Route { children: ServerRoute[]; module: ServerRouteModule; } type OptionalCriticalCss = CriticalCss | undefined; /** * The output of the compiler for the server build. */ interface ServerBuild { entry: { module: ServerEntryModule; }; routes: ServerRouteManifest; assets: AssetsManifest; basename?: string; publicPath: string; assetsBuildDirectory: string; future: FutureConfig; ssr: boolean; unstable_getCriticalCss?: (args: { pathname: string; }) => OptionalCriticalCss | Promise; /** * @deprecated This is now done via a custom header during prerendering */ isSpaMode: boolean; prerender: string[]; routeDiscovery: { mode: "lazy" | "initial"; manifestPath: string; }; } interface HandleDocumentRequestFunction { (request: Request, responseStatusCode: number, responseHeaders: Headers, context: EntryContext, loadContext: MiddlewareEnabled extends true ? unstable_RouterContextProvider : AppLoadContext): Promise | Response; } interface HandleDataRequestFunction { (response: Response, args: LoaderFunctionArgs | ActionFunctionArgs): Promise | Response; } interface HandleErrorFunction { (error: unknown, args: LoaderFunctionArgs | ActionFunctionArgs): void; } /** * A module that serves as the entry point for a Remix app during server * rendering. */ interface ServerEntryModule { default: HandleDocumentRequestFunction; handleDataRequest?: HandleDataRequestFunction; handleError?: HandleErrorFunction; streamTimeout?: number; } interface Route { index?: boolean; caseSensitive?: boolean; id: string; parentId?: string; path?: string; } interface EntryRoute extends Route { hasAction: boolean; hasLoader: boolean; hasClientAction: boolean; hasClientLoader: boolean; hasClientMiddleware: boolean; hasErrorBoundary: boolean; imports?: string[]; css?: string[]; module: string; clientActionModule: string | undefined; clientLoaderModule: string | undefined; clientMiddlewareModule: string | undefined; hydrateFallbackModule: string | undefined; parentId?: string; } declare function createClientRoutesWithHMRRevalidationOptOut(needsRevalidation: Set, manifest: RouteManifest, routeModulesCache: RouteModules, initialState: HydrationState, ssr: boolean, isSpaMode: boolean): DataRouteObject[]; declare function createClientRoutes(manifest: RouteManifest, routeModulesCache: RouteModules, initialState: HydrationState | null, ssr: boolean, isSpaMode: boolean, parentId?: string, routesByParentId?: Record[]>, needsRevalidation?: Set): DataRouteObject[]; declare function shouldHydrateRouteLoader(routeId: string, clientLoader: ClientLoaderFunction | undefined, hasLoader: boolean, isSpaMode: boolean): boolean; type SerializedError = { message: string; stack?: string; }; interface FrameworkContextObject { manifest: AssetsManifest; routeModules: RouteModules; criticalCss?: CriticalCss; serverHandoffString?: string; future: FutureConfig; ssr: boolean; isSpaMode: boolean; routeDiscovery: ServerBuild["routeDiscovery"]; serializeError?(error: Error): SerializedError; renderMeta?: { didRenderScripts?: boolean; streamCache?: Record & { result?: { done: boolean; value: string; }; error?: unknown; }>; }; } interface EntryContext extends FrameworkContextObject { staticHandlerContext: StaticHandlerContext; serverHandoffStream?: ReadableStream; } interface FutureConfig { unstable_subResourceIntegrity: boolean; unstable_middleware: boolean; } type CriticalCss = string | { rel: "stylesheet"; href: string; }; interface AssetsManifest { entry: { imports: string[]; module: string; }; routes: RouteManifest; url: string; version: string; hmr?: { timestamp?: number; runtime: string; }; sri?: Record | true; } declare const FrameworkContext: React.Context; /** * Defines the discovery behavior of the link: * * - "render" - default, discover the route when the link renders * - "none" - don't eagerly discover, only discover if the link is clicked */ type DiscoverBehavior = "render" | "none"; /** * Defines the prefetching behavior of the link: * * - "none": Never fetched * - "intent": Fetched when the user focuses or hovers the link * - "render": Fetched when the link is rendered * - "viewport": Fetched when the link is in the viewport */ type PrefetchBehavior = "intent" | "render" | "none" | "viewport"; /** * Renders all of the `` tags created by the route module * [`links`](../../start/framework/route-module#links) export. You should render * it inside the `` of your document. * * @example * import { Links } from "react-router"; * * export default function Root() { * return ( * * * * * * * ); * } * * @public * @category Components * @mode framework * @returns A collection of React elements for `` tags */ declare function Links(): React.JSX.Element; /** * Renders `` tags for modules and data of * another page to enable an instant navigation to that page. * [``](../../components/Link#prefetch) uses this internally, but * you can render it to prefetch a page for any other reason. * * For example, you may render one of this as the user types into a search field * to prefetch search results before they click through to their selection. * * @example * import { PrefetchPageLinks } from "react-router"; * * * * @public * @category Components * @mode framework * @param props Props * @param props.page The absolute path of the page to prefetch, e.g. `/absolute/path`. * @param props.linkProps Additional props to spread onto the * [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/link) * tags, such as `crossOrigin`, `integrity`, `rel`, etc. * @returns A collection of React elements for `` tags */ declare function PrefetchPageLinks({ page, ...linkProps }: PageLinkDescriptor): React.JSX.Element | null; /** * Renders all the `` tags created by the route module * [`meta`](../../start/framework/route-module#meta) exports. You should render * it inside the `` of your HTML. * * @example * import { Meta } from "react-router"; * * export default function Root() { * return ( * * * * * * ); * } * * @public * @category Components * @mode framework * @returns A collection of React elements for `` tags */ declare function Meta(): React.JSX.Element; /** * A couple common attributes: * * - `` for hosting your static assets on a different server than your app. * - `` to support a [content security policy for scripts](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/script-src) with [nonce-sources](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/Sources#sources) for your `