/** * `useMotionValueEvent(mv, "change", listener)` subscribes the listener * to change notifications on a MotionValue for the lifetime of the * calling component. Vue setups run once, so the listener identity is * captured at call time; close over reactive state inside it if you * need that. * * useMotionValueEvent(x, "change", (v) => console.log(v)) */ import { type MotionValue, type MotionValueEventName, type MotionValueListener } from "@kinem/core"; export declare function useMotionValueEvent(mv: MotionValue, event: MotionValueEventName, listener: MotionValueListener): void; //# sourceMappingURL=useMotionValueEvent.d.ts.map