import { ViewStyle } from 'react-native'; import Reanimated from 'react-native-reanimated'; export interface IBounceInDownContainerProps { delayInMS?: number; initialPositionY?: number; type?: keyof IBouncePreset; } export interface IBounceInDownPresentationProps { containerStyle: Reanimated.AnimatedStyleProp; } export type IBouncePreset = { less: { damping: 4; restSpeedThreshold: 0.001 }; medium: { damping: 3; restSpeedThreshold: 0.01 }; high: { damping: 2; restSpeedThreshold: 0.1 }; };