UNPKG

410 BTypeScriptView Raw
1import React from 'react';
2import { Animated, ViewProps } from 'react-native';
3interface Props extends ViewProps {
4 visibility?: 0 | 1 | Animated.AnimatedInterpolation;
5 index: number;
6}
7declare class BottomNavigationRouteScreen extends React.Component<Props> {
8 render(): JSX.Element;
9}
10declare const _default: Animated.AnimatedComponent<typeof BottomNavigationRouteScreen>;
11export default _default;