import * as React from 'react'; import Animated from 'react-native-reanimated'; interface Props { component: React.ReactNode; activeIndex: number; index: number; itemRef: React.RefObject; animatedActiveIndex: Animated.Value; animatedHoverIndex: Animated.Value; activeHoverIndex: number; activeItemHeight: number; placeholder?: React.ReactNode; isHoverReady: boolean; } declare class RowItem extends React.Component { isActive: Animated.Value<0>; spacerTopHeight: Animated.Value; spacerBottomHeight: Animated.Value; renderContent: () => {} | null | undefined; render(): JSX.Element; } export default RowItem;