/** * 压缩图片到本地文件系统 */ export declare function compressImages(imageDir: string, quality?: number, outputDir?: string): Promise<{ content: { type: "text"; text: string; }[]; isError: boolean; } | { content: { type: "text"; text: string; }[]; isError?: undefined; }>; //# sourceMappingURL=imageCompress.d.ts.map