UNPKG

@exodus/react-navigation-native-stack

Version:
11 lines (10 loc) 442 B
/// <reference types="react" /> import { ParamListBase, StackNavigationState } from '@react-navigation/native'; import type { NativeStackDescriptorMap, NativeStackNavigationHelpers } from '../types'; declare type Props = { state: StackNavigationState<ParamListBase>; navigation: NativeStackNavigationHelpers; descriptors: NativeStackDescriptorMap; }; export default function NativeStackView(props: Props): JSX.Element; export {};