/** * Detects the user's prefers-reduced-motion media query. * * SSR-safe: returns `false` on the server, reads the real value synchronously * on the client during hydration, and updates when the OS preference changes. * * @returns {boolean} `true` when reduced motion is preferred */ export declare function useReducedMotion(): boolean;