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