import Animated from "react-native-reanimated";
export declare function runDecay(clock: Animated.Clock, value: Animated.Adaptable<number>, velocity: Animated.Adaptable<number>, rerunDecaying: Animated.Value<number>, deceleration?: number): Animated.Node<number>[];
export declare function runSpring(clock: Animated.Clock, value: Animated.Adaptable<number>, dest: Animated.Adaptable<number>, config?: Animated.SpringConfig): Animated.Node<number>;
export declare function runTiming(clock: Animated.Clock, value: Animated.Adaptable<number>, config: Animated.TimingConfig): Animated.Node<number>;
export declare const runLoop: (clock: Animated.Clock, duration: Animated.Adaptable<number>, easing: Animated.EasingFunction, boomerang?: boolean) => Animated.Node<number>;
