declare type PreviewImageCallbackOptions = import("../../common").CallbackOptions; export interface PreviewImageOptions extends PreviewImageCallbackOptions { /** * 待预览图片的链接列表 */ urls: string[]; /** * 当前预览图片的链接,默认为列表中的第一张 */ current?: string; } export {};