import { App } from 'vue'; import { SDOptions } from '../_utils/types'; import _Image from './image.vue'; import _ImagePreviewAction from './preview-action'; import _ImagePreviewGroup from './preview-group.vue'; import _ImagePreview from './preview.vue'; declare const Image: typeof _Image & { Preview: typeof _ImagePreview; PreviewGroup: typeof _ImagePreviewGroup; install: (app: App, options?: SDOptions) => void; }; export type ImageInstance = InstanceType; export type ImagePreviewInstance = InstanceType; export type ImagePreviewGroupInstance = InstanceType; export type ImagePreviewActionInstance = InstanceType; export { _ImagePreview as ImagePreview, _ImagePreviewGroup as ImagePreviewGroup, _ImagePreviewAction as ImagePreviewAction, }; export default Image;