import { type MotionValue } from "motion-dom"; export declare function useCombineMotionValues(combineValues: () => T): { subscribe: (values: MotionValue[]) => void; unsubscribe: () => void; value: MotionValue; updateValue: () => void; };