import type { Ref } from '@stacksjs/stx'; /** * Reactive device motion. * Tracks device acceleration and rotation using the DeviceMotionEvent API. * * @returns Reactive acceleration, accelerationIncludingGravity, rotationRate, and interval */ export declare function useDeviceMotion(): UseDeviceMotionReturn; export declare interface UseDeviceMotionReturn { acceleration: { x: Ref y: Ref z: Ref } accelerationIncludingGravity: { x: Ref y: Ref z: Ref } rotationRate: { alpha: Ref beta: Ref gamma: Ref } interval: Ref isSupported: Ref }