import type { Ref } from 'vue'; import type { ComponentRef } from '../types'; export interface UseFullScreenContext { wrapClassName: Ref; modalWrapperRef: Ref; extHeightRef: Ref; } export declare function useFullScreen(context: UseFullScreenContext): { getWrapClassName: import("vue").ComputedRef; handleFullScreen: (e: Event) => void; fullScreenRef: Ref; };