import React from 'react'; import Animated from 'react-native-reanimated'; import { ILocation, IMatch, IRoute } from '../Router'; import { IAnimationHandler } from './createAnimationHandlers'; export declare const RNSScreen: any; declare type ScreenProps = { location: ILocation; match: IMatch; route: IRoute; index: Animated.Value; animationHandlers: IAnimationHandler; }; export declare const Screen: React.FC; export {};