interface UseInteractiveGlassProps { /** * Enable hover effects * @default true */ enableHover?: boolean; /** * Enable press effects * @default true */ enablePress?: boolean; /** * Interaction intensity * @default "subtle" */ intensity?: "subtle" | "medium" | "strong"; /** * Custom spring stiffness * @default 320 */ stiffness?: number; /** * Custom spring damping * @default 23 */ damping?: number; } /** * Unified glass interaction hook for consistent touch interactions across all components * Provides subtle spring physics for hover and press states */ export declare const useInteractiveGlass: (props?: UseInteractiveGlassProps) => { scale: import("framer-motion").MotionValue; y: import("framer-motion").MotionValue; interactions: { onMouseEnter: () => void; onMouseLeave: () => void; onMouseDown: () => void; onMouseUp: () => void; onTouchStart: () => void; onTouchEnd: () => void; }; reducedMotion: boolean; }; export {}; //# sourceMappingURL=useInteractiveGlass.d.ts.map