import type { Component, ExtractPropTypes } from 'vue'; import type { VideoProps } from 'element-plus-x/es/components/video'; export type VideoViewerAction = 'zoomIn' | 'zoomOut' | 'clockwise' | 'anticlockwise'; export declare const videoViewerProps: { readonly urlList: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[] | VideoProps[]) | (() => string[] | VideoProps[]) | (((new (...args: any[]) => string[] | VideoProps[]) | (() => string[] | VideoProps[])) | null)[], unknown, unknown, () => [], boolean>; readonly zIndex: { readonly type: import("vue").PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly initialIndex: import("element-plus/es/utils").EpPropFinalized; readonly infinite: import("element-plus/es/utils").EpPropFinalized; readonly hideOnClickModal: BooleanConstructor; readonly teleported: BooleanConstructor; readonly closeOnPressEscape: import("element-plus/es/utils").EpPropFinalized; readonly zoomRate: import("element-plus/es/utils").EpPropFinalized; readonly minScale: import("element-plus/es/utils").EpPropFinalized; readonly maxScale: import("element-plus/es/utils").EpPropFinalized; }; export type VideoViewerProps = ExtractPropTypes; export declare const videoViewerEmits: { close: () => boolean; switch: (index: number) => boolean; rotate: (deg: number) => boolean; }; export type VideoViewerEmits = typeof videoViewerEmits; export interface VideoViewerMode { name: string; icon: Component; }