import { TextStyle, ViewStyle } from "react-native"; import Animated from "react-native-reanimated"; import { DisplayType } from './types'; interface ItemProps { itemHeight: number; index: number; scrollY: Animated.SharedValue; scrollX: Animated.SharedValue; value: T; itemWidth: number; allowFontScaling?: boolean; containerStyle?: ViewStyle; discoverable?: boolean; display?: DisplayType; fontSize?: number; items?: T[]; marginHorizontalPercentage?: number; marginVerticalPercentage?: number; opacityRangeOut?: number[]; scaleRangeOut?: number[]; spaceBetween?: number; textStyle?: TextStyle; } declare const Item: ({ allowFontScaling, discoverable, display, fontSize, itemHeight, index, opacityRangeOut, scaleRangeOut, scrollX, scrollY, spaceBetween, textStyle, value, itemWidth, }: ItemProps) => JSX.Element; export default Item;