// @ts-ignore import * as React from 'react'; import { ComponentProps } from '../types'; export interface ImagePreviewProps extends ComponentProps { // 显示 visible?: boolean; // 预览图片合集 imageList?: string[]; } export interface ImagePreviewFC extends React.FC { } declare const ImagePreview: ImagePreviewFC; export default ImagePreview;