import { createDeviceMotion } from './core.mjs'; export { UseDeviceMotionOptions, UseDeviceMotionReturn } from './core.mjs'; import '@usels/core'; import '../../shared/configurable.mjs'; import '@legendapp/state'; /** * Reactive wrapper around the * [DeviceMotionEvent](https://developer.mozilla.org/en-US/docs/Web/API/DeviceMotionEvent). * * Provides reactive access to device acceleration, rotation rate, and interval, * plus iOS permission flow integration. */ type UseDeviceMotion = typeof createDeviceMotion; declare const useDeviceMotion: UseDeviceMotion; export { type UseDeviceMotion, createDeviceMotion, useDeviceMotion };