import { EventArgs } from './types';
/**
 * Tracks physical orientation of the device.
 *
 * @returns Own properties of the last corresponding event.
 *
 * @example
 * function Component() {
 *   const { alpha, beta, gamma } = useDeviceOrientation();
 *   // ...
 * }
 */
export default function useDeviceOrientation(): EventArgs<DeviceOrientationEvent>;
