import { type SlotsType, type ExtractPropTypes } from 'vue'; export declare const videoViewerProps: { src: { type: StringConstructor; }; teleported: { type: BooleanConstructor; default: boolean; }; closeOnPressEscape: { type: BooleanConstructor; default: boolean; }; hideOnClickModal: { type: BooleanConstructor; }; }; export type VideoViewerProps = ExtractPropTypes; export interface VideoViewerSlots { default: {}; } export declare const videoViewerSlots: SlotsType; export declare const videoViewerEmits: { close: () => boolean; }; export type VideoViewerEmits = typeof videoViewerEmits;