import Animated from 'react-native-reanimated'; import { IRoute, IRouter } from '../../Router'; import { MatchingRoute as BaseMatchingRoute } from '../../Router/utils'; export declare type MatchingRoute = BaseMatchingRoute & { indexValue: Animated.Value; prevIndex: number; }; export declare function findMatchingRoutes(router: IRouter, routes: IRoute[], prevRoutes?: MatchingRoute[], enableForwardRoutes?: boolean): MatchingRoute[];