import type { MotionValue } from "framer-motion/dom"; import type { FollowValueOptions, SpringOptions } from "motion-dom"; import { type MaybeGetter } from "../vendor/runed/index.js"; type AnyResolvedKeyframe = string | number; export declare function useFollowValue(source: T | MotionValue, options?: MaybeGetter): MotionValue; export declare function useSpring(source: MotionValue | MotionValue | number, config?: MaybeGetter): MotionValue; export {};