/** * 获取图片信息 */ export default function getImageInfo(options: { src: string; }): Promise<{ width: number; height: number; path: string; }>;