import { Animated } from 'react-native'; type AnimationOptions = { variable: Animated.Value; toValue: number; duration?: number; delay?: number; easing?: (value: number) => number; }; type SpringOptions = { variable: Animated.Value; toValue: number; delay?: number; tension?: number; friction?: number; }; export declare function animateTiming({ variable, toValue, duration, delay, easing, }: AnimationOptions): Animated.CompositeAnimation; export declare function animateLoop({ variable, toValue, duration, easing, }: AnimationOptions): Animated.CompositeAnimation; export declare function animateSpring({ variable, toValue, delay, tension, friction, }: SpringOptions): Animated.CompositeAnimation; export declare function animateElastic(params: AnimationOptions): Animated.CompositeAnimation; export {}; //# sourceMappingURL=helpers.d.ts.map