/** based on framer-motion@4.1.17, Copyright (c) 2018 Framer B.V. */ import type { MotionValue } from './index.js'; /** * Creates a `MotionValue` that updates when the velocity of the provided `MotionValue` changes. * * ```javascript * const x = useMotionValue(0) * const xVelocity = useVelocity(x) * const xAcceleration = useVelocity(xVelocity) * ``` * * @public */ export declare const useVelocity: (value: MotionValue) => MotionValue & { reset: (value: MotionValue) => void; }; //# sourceMappingURL=use-velocity.d.ts.map