import Animated from "react-native-reanimated"; import { AnimatedAdaptableXY } from "."; export declare type Behavior = Animated.Node | Array>; export interface BehaviorXY { x: Behavior; y: Behavior; } export declare type Movement = Animated.Node | Array>; export interface MovementXY { x: Movement; y: Movement; } export interface Boundary { min?: Animated.Adaptable; max?: Animated.Adaptable; } export interface BoundaryXY { max?: Partial>; min?: Partial>; } export interface AnimatedObject { x: Animated.Value; y: Animated.Value; vx: Animated.Value; vy: Animated.Value; mass: Animated.Adaptable; }