export type ScreenshotState = { status: string; detail: string; error: string; capture: () => Promise<{ logicalSize: { width: number; height: number; }; dataUrl: string; }>; }; export type ScreenshotWindow = Window & typeof globalThis & { __genomeSpyScreenshot: ScreenshotState; }; //# sourceMappingURL=screenshotHarness.d.ts.map