import * as React from 'react'; import Animated from 'react-native-reanimated'; import { ViewStyle } from 'react-native'; interface Props { component: React.ReactNode; translationY: Animated.Value; activeItemHeight: Animated.Value; absoluteY: Animated.Value; viewOffsetTop: Animated.Value; gestureState: Animated.Value; isAnimating: Animated.Value; targetItemPositionY: Animated.Value; activeIndex: Animated.Value; activeHoverIndex: Animated.Value; setHoverComponentReady: () => void; hoverStyle?: ViewStyle; } declare class SelectedItem extends React.PureComponent { clock: Animated.Clock; top: Animated.Value; opacity: Animated.Value; componentDidMount(): void; render(): JSX.Element; } export default SelectedItem;