import Animated from "react-native-reanimated"; import { AnimatedAdaptableXY, AnimatedObject, AnimatedValueXY, Behavior, BehaviorXY } from "../types"; export interface AnchorXInput { point: Animated.Adaptable; anchor: Animated.Adaptable; dt: Animated.Adaptable; } export declare function anchorX(velocity: Animated.Value, args: AnchorXInput): Behavior; export interface AnchorXYInput { point: AnimatedAdaptableXY; anchor: AnimatedAdaptableXY; dt: Animated.Adaptable; } export declare function anchorXY(velocity: AnimatedValueXY, args: AnchorXYInput): BehaviorXY; export interface AnchorObjectInput { anchor: AnimatedAdaptableXY; dt: Animated.Adaptable; } export declare function anchorObject(obj: AnimatedObject, args: AnchorObjectInput): BehaviorXY;