///
import { DiffImageToScreenShot } from '../../typings';
import { MatchImageSnapshotOptions } from 'jest-image-snapshot';
import { ImageDiffResult } from '../../typings';
export interface SnapshotOptions extends MatchImageSnapshotOptions {
receivedImageBuffer: Buffer;
updateSnapshot?: boolean;
}
export declare const diffImageToScreenshot: (data: DiffImageToScreenShot, imageBuffer: Buffer, options?: Partial) => Promise;