react-navigation-stack
Version:
Stack navigator component for React Navigation
13 lines (12 loc) • 581 B
TypeScript
import * as React from 'react';
import { Animated, StyleProp, ViewStyle } from 'react-native';
import { InputProps, InjectedProps } from './createPointerEventsContainer';
declare type Props = InputProps & InjectedProps & {
style: StyleProp<ViewStyle>;
animatedStyle: any;
position: Animated.AnimatedInterpolation;
transparent?: boolean;
children: React.ReactNode;
};
declare const _default: React.ComponentType<Pick<Props, "style" | "children" | "scene" | "navigation" | "realPosition" | "animatedStyle" | "position" | "transparent">>;
export default _default;