UNPKG

@react-navigation/core

Version:

Core utilities for building navigators

14 lines 481 B
import * as React from 'react'; type Props = { children: React.ReactNode; }; export declare const SingleNavigatorContext: React.Context<{ register(key: string): void; unregister(key: string): void; } | undefined>; /** * Component which ensures that there's only one navigator nested under it. */ export declare function EnsureSingleNavigator({ children }: Props): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=EnsureSingleNavigator.d.ts.map