/** * `useTransform(source, inputRange, outputRange, opts?)` returns a * derived `MotionValue` that recomputes whenever `source` updates. * The derived cell is destroyed when the calling component unmounts. */ import { type MotionValue, type TransformInputRange, type TransformOpts, type TransformOutputRange } from "@kinem/core"; export declare function useTransform(source: MotionValue, inputRange: TransformInputRange, outputRange: TransformOutputRange, opts?: TransformOpts): MotionValue; //# sourceMappingURL=useTransform.d.ts.map