import type { MaybeElementRef } from '../typings'; import type { Ref } from 'vue'; interface Options { onExitFull?: () => void; onFull?: () => void; } export declare const useFullscreen: (target: MaybeElementRef, options?: Options | undefined) => { isFullscreen: Ref; enter: () => void; exit: () => void; toggle: () => void; }; export {};