import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import Animated from 'react-native-reanimated'; import type { CarouselProps } from '../types'; type Props = { item: TData; index: number; offset: number; renderItem: CarouselProps['renderItem']; animatedValue: Animated.SharedValue; animation?: 'parallax'; freeze: Animated.SharedValue; itemWidth: number; inactiveOpacity: number; inactiveScale: number; containerStyle: StyleProp; onPress?: () => void; }; export default function PageItem({ item, index, offset, renderItem, animatedValue, animation, freeze, itemWidth, inactiveOpacity, inactiveScale, containerStyle, onPress, }: Props): React.JSX.Element; export {}; //# sourceMappingURL=PageItem.d.ts.map