/** * `useMotionValue(initial)` returns a stable `MotionValue` cell tied * to the calling component's lifetime. Updates do not trigger re-renders; * subscribers (CSS bindings, `useTransform`, gesture handlers) read * directly via `get()` / `on()`. * * const x = useMotionValue(0) * onMounted(() => bindMotionValueToCss(x, el.value!, "--x", (n) => `${n}px`)) */ import { type MotionValue } from "@kinem/core"; export declare function useMotionValue(initial: T): MotionValue; //# sourceMappingURL=useMotionValue.d.ts.map