interface UseCardSpringProps { /** * Card interaction intensity * @default "subtle" */ intensity?: "subtle" | "medium" | "strong"; /** * Enable tilt effect on hover * @default true */ enableTilt?: boolean; /** * Maximum tilt rotation in degrees * @default 4 */ maxTilt?: number; /** * Enable depth shadow animation * @default true */ enableDepth?: boolean; } export declare const useCardSpring: (props?: UseCardSpringProps) => { scale: import("framer-motion").MotionValue; y: import("framer-motion").MotionValue; rotateX: import("framer-motion").MotionValue | undefined; rotateY: import("framer-motion").MotionValue | undefined; shadow: { blur: import("framer-motion").MotionValue; opacity: import("framer-motion").MotionValue; } | undefined; interactions: { onHoverStart: (event: React.MouseEvent) => void; onHoverEnd: () => void; onPressStart: () => void; onPressEnd: () => void; onMouseMove: (event: React.MouseEvent) => void; }; reducedMotion: boolean; }; export {}; //# sourceMappingURL=useCardSpring.d.ts.map