import type { Component, ExtractPropTypes } from 'vue'; import type ImageViewer from './image-viewer.vue'; export declare type ImageViewerAction = 'zoomIn' | 'zoomOut' | 'clockwise' | 'anticlockwise'; export declare const imageViewerProps: { readonly urlList: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], 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; readonly crossorigin: { readonly type: import("vue").PropType ("" | "anonymous" | "use-credentials") & {}) | (() => "" | "anonymous" | "use-credentials") | ((new (...args: any[]) => ("" | "anonymous" | "use-credentials") & {}) | (() => "" | "anonymous" | "use-credentials"))[], unknown, unknown>>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; }; export declare type ImageViewerProps = ExtractPropTypes; export declare const imageViewerEmits: { close: () => boolean; switch: (index: number) => boolean; rotate: (deg: number) => boolean; }; export declare type ImageViewerEmits = typeof imageViewerEmits; export interface ImageViewerMode { name: string; icon: Component; } export declare type ImageViewerInstance = InstanceType;