import type { Ref } from '@stacksjs/stx'; /** * Reactive device orientation. * Tracks device orientation using the DeviceOrientationEvent API. * * @returns Reactive alpha, beta, gamma angles, absolute flag, and support status */ export declare function useDeviceOrientation(): UseDeviceOrientationReturn; export declare interface UseDeviceOrientationReturn { alpha: Ref beta: Ref gamma: Ref absolute: Ref isSupported: Ref }