import React from 'react'; import { Animated } from 'react-native'; declare const ActiveTabIndicator: ({ scrollOffsetAnimatedValue, positionAnimatedValue, tabsLength, tabsWidth, }: { scrollOffsetAnimatedValue: Animated.Value; positionAnimatedValue: Animated.Value; tabsLength: number; tabsWidth: number; }) => React.JSX.Element; export default ActiveTabIndicator;