import { VarComponent } from './varComponent' import type { VueConstructor, TeleportProps } from 'vue' export interface ImagePreviewProps { show?: boolean current?: string images?: string[] zoom?: string | number lockScroll?: boolean indicator?: boolean closeable?: boolean teleport?: TeleportProps['to'] onOpen?: () => void onOpened?: () => void onClose?: () => void onClosed?: () => void onChange?: (index: number) => void 'onUpdate:show'?: (show: boolean) => void } export interface ImagePreviewOptions { show?: boolean current?: string images?: string[] zoom?: string | number lockScroll?: boolean indicator?: boolean closeable?: boolean onOpen?: () => void onOpened?: () => void onClose?: () => void onClosed?: () => void onChange?: (index: number) => void } export class ImagePreviewComponent extends VarComponent { $props: ImagePreviewProps } export interface IImagePreview { (options: string | string[] | ImagePreviewOptions): void Component: typeof ImagePreviewComponent close(): void install(app: VueConstructor): void } export const ImagePreview: IImagePreview export class _ImagePreviewComponent extends ImagePreviewComponent {}