import { FlatListProps } from 'react-native'; import type { AnimatedListProps } from './types'; declare type FlatProps = FlatListProps; declare const AnimatedList: ({ data, ItemSeparatorComponent, renderItem, animationType, animationDelay, animationDuration, style, cardStyle, horizontal, ...rest }: AnimatedListProps & FlatProps) => JSX.Element; export default AnimatedList;