import { MaybeRef } from 'vue'; import { MotionValue } from 'framer-motion/dom'; import { FollowValueOptions, SpringOptions } from 'motion-dom'; type AnyResolvedKeyframe = string | number; export declare function useFollowValue(source: T | MotionValue, options?: MaybeRef): MotionValue; export declare function useSpring(source: MotionValue | string, config?: MaybeRef): MotionValue; export declare function useSpring(source: MotionValue | number, config?: MaybeRef): MotionValue; export {};