import * as solid_js from 'solid-js'; import { ConfigurableWindow } from '../_configurable.js'; /** * Reactive screen orientation. * * @see https://solidjs-use.github.io/solidjs-use/core/useScreenOrientation */ declare const useScreenOrientation: (options?: ConfigurableWindow) => { isSupported: solid_js.Accessor; orientation: solid_js.Accessor; angle: solid_js.Accessor; lockOrientation: (type: OrientationLockType) => Promise; unlockOrientation: () => void; }; type UseScreenOrientationReturn = ReturnType; export { UseScreenOrientationReturn, useScreenOrientation };