/** * This API is based on the Playwright toMatchSnapshot API. */ import { type EmitImageDiffArtifacts, type Log, type SnapshotStorage, type ToMatchScreenshotOptions } from "./types.js"; type ToHaveScreenshot = { defaultThreshold: number; emitImageDiffArtifacts: EmitImageDiffArtifacts; filePath?: string; lineNumber?: number; log: Log; name: string; options?: ToMatchScreenshotOptions; pageOrLocator: unknown; storage: SnapshotStorage; }; export declare function toHaveScreenshot(props: ToHaveScreenshot): Promise; export {}; //# sourceMappingURL=toHaveScreenshot.d.ts.map