import { Easing } from './enums'; export type SlidePositionType = 'LEFT' | 'RIGHT' | 'TOP' | 'BOTTOM'; export interface AnimationOptions { delay?: number; duration?: number; easing?: Easing; }