import type { ScreenshotComparatorRegistry, ScreenshotMatcherOptions } from "../../../context.js";
export type ScreenshotMatcherArguments<ComparatorName extends keyof ScreenshotComparatorRegistry = keyof ScreenshotComparatorRegistry> = [name: string, testName: string, options: ScreenshotMatcherOptions<ComparatorName> & {
	element: string;
	screenshotOptions?: ScreenshotMatcherOptions<ComparatorName>["screenshotOptions"] & {
		mask?: readonly string[];
	};
}];
interface ScreenshotData {
	path: string;
	width: number;
	height: number;
}
export type ScreenshotMatcherOutput = Promise<{
	pass: false;
	reference: ScreenshotData | null;
	actual: ScreenshotData | null;
	diff: ScreenshotData | null;
	message: string;
} | {
	pass: true;
}>;
export {};
