UNPKG

313 BTypeScriptView Raw
1import * as React from 'react';
2/**
3 * Context which holds the values for the current navigation tree.
4 * Intended for use in SSR. This is not safe to use on the client.
5 */
6declare const CurrentRenderContext: React.Context<{
7 options?: object | undefined;
8} | undefined>;
9export default CurrentRenderContext;