import Animated from 'react-native-reanimated'; import { IRouter } from '../Router'; export interface IAnimationHandler { navigate: Animated.Value; currentIndex: Animated.Value; nextIndex: Animated.Value; width: Animated.Value; position: Animated.Adaptable; isRTL: Animated.Value<0 | 1>; handleBackGesture: Animated.Node; handleBackGestureEvent: (...args: any[]) => void; handleForwardGestureEvent: (...args: any[]) => void; handleNavigateTransitionStart: Animated.Node; } export declare function createAnimationHandlers(router: IRouter, isRTLValue: boolean): IAnimationHandler;