import React, { ReactNode } from 'react'; import Animated from 'react-native-reanimated'; interface ItemProps { item: any; index: number; positions: Animated.SharedValue; scrollY: Animated.SharedValue; contentHeight: number; containerHeight?: number; scrolViewRef: React.RefObject; itemHeight: number; onFinish: (item: any) => void; renderItem: (item: any) => ReactNode; dragableAreaSize?: number; } declare const Item: ({ dragableAreaSize, item, positions, index, containerHeight, contentHeight, scrollY, scrolViewRef, itemHeight, onFinish, renderItem }: ItemProps) => JSX.Element; export default Item;