/** * `useVelocity(source)` returns a `MotionValue` that mirrors * the per-second derivative of a numeric source `MotionValue`. The cell * is destroyed when the calling component unmounts. * * const x = useMotionValue(0) * const vx = useVelocity(x) */ import { type MotionValue, type VelocityMotionValue } from "@kinem/core"; export declare function useVelocity(source: MotionValue): VelocityMotionValue; //# sourceMappingURL=useVelocity.d.ts.map