import { createParallax } from './core.mjs'; export { UseParallaxOptions, UseParallaxReturn, UseParallaxSource } from './core.mjs'; import '@usels/core'; import '../../types.mjs'; /** * Creates parallax effects. Uses `useDeviceOrientation` on mobile devices and * falls back to mouse position on desktop. `roll$` and `tilt$` are scaled * reactive observables in the range -0.5 ~ 0.5, and `source$` reports the * active sensor source. */ type UseParallax = typeof createParallax; declare const useParallax: UseParallax; export { type UseParallax, createParallax, useParallax };