import type { MotionAnimationProps } from './types.js'; /** * Convert spec motion config (Motion/Framer Motion format) to MotionView props. * motion.initial → from, motion.animate → animate, motion.exit → exit */ export declare function toMotionViewProps(motion: Record | undefined): MotionAnimationProps; /** * Merge hover + active styles into a single pressed style object. * On mobile, touch = hover + active simultaneously. */ export declare function mergeInteractionStyles(hover: Record | undefined, active: Record | undefined): Record | undefined; //# sourceMappingURL=motion-adapter.d.ts.map