import type { MaybeRef } from './_shared'; import type { Ref } from '@stacksjs/stx'; /** * Reactive Fullscreen API. * Enter, exit, and toggle fullscreen mode on an element. * * @param target - Target element (defaults to documentElement) */ export declare function useFullscreen(target?: MaybeRef): UseFullscreenReturn; export declare interface UseFullscreenReturn { isFullscreen: Ref isSupported: Ref enter: () => Promise exit: () => Promise toggle: () => Promise }