import type { FC } from "react"; export interface PreviewImgProps { /** 图片列表 */ files: any[]; /** 图片地址的key,默认 filePath */ fileUrlKey?: string; } declare const PreviewImg: FC; export default PreviewImg;