export type DiffImagesOptions = { threshold?: number; createDiffImage?: boolean; tolerance?: number; includeAA?: boolean; includeEmpty?: boolean; }; export type DiffImagesResult = { success: boolean; error?: string; match: number; matchPercentage: string; diffImage: any; source1: string | Buffer; source2: string; options: unknown; }; export default function diffImages(source1: string | Buffer, source2: string, options?: DiffImagesOptions): Promise; //# sourceMappingURL=diff-images.d.ts.map