import type { ViewStyle, Animated } from 'react-native'; import type { CommonViewProps } from '..'; export type AnimatedStyle = Animated.WithAnimatedValue; export type AnimatedViewProps = CommonViewProps & { animatedChildHideStyle?: AnimatedStyle; animatedChildShowStyle?: AnimatedStyle; };