import Animated from "react-native-reanimated"; import { AnimatedAdaptableXY, AnimatedObject, AnimatedValueXY, Behavior, BehaviorXY } from "../types"; export interface SpringXInput { point: Animated.Adaptable; anchor: Animated.Adaptable; tension: Animated.Adaptable; mass: Animated.Adaptable; dt: Animated.Adaptable; } export declare function springX(velocity: Animated.Value, args: SpringXInput): Behavior; export interface SpringXYInput { point: AnimatedAdaptableXY; anchor: AnimatedAdaptableXY; tension: Animated.Adaptable; mass: Animated.Adaptable; dt: Animated.Adaptable; } export declare function springXY(velocity: AnimatedValueXY, args: SpringXYInput): BehaviorXY; export interface SpringObjectInput { anchor: AnimatedAdaptableXY; tension: Animated.Adaptable; dt: Animated.Adaptable; } export declare function springObject(obj: AnimatedObject, args: SpringObjectInput): BehaviorXY;