import { createScreenOrientation } from './core.mjs'; export { OrientationLockType, OrientationType, UseScreenOrientationOptions, UseScreenOrientationReturn } from './core.mjs'; import '@usels/core'; import '../../shared/configurable.mjs'; import '@legendapp/state'; /** * Reactive wrapper around the * [Screen Orientation API](https://developer.mozilla.org/en-US/docs/Web/API/ScreenOrientation). * * Tracks the current screen orientation type and angle, and provides methods * to lock and unlock orientation. */ type UseScreenOrientation = typeof createScreenOrientation; declare const useScreenOrientation: UseScreenOrientation; export { type UseScreenOrientation, createScreenOrientation, useScreenOrientation };