import { IEasingPreset } from '@core/animation/EasingPreset.interface'; import { LayoutChangeEvent, ViewStyle } from 'react-native'; import Reanimated from 'react-native-reanimated'; export interface IRotateInUpLeftContainerProps { delayInMS?: number; durationInMS?: number; preset?: IEasingPreset; } export interface IRotateInUpLeftPresentationProps { containerStyle: Reanimated.AnimatedStyleProp; onLayout: (event: LayoutChangeEvent) => void; }