import { GenerateImageSourcesOptions } from ".."; import { ImageSourceEntry, TestEntry, Viewport } from "../../../types"; export declare function generateHTMLImageSources(entries: TestEntry[], options: GenerateImageSourcesOptions): Promise; export declare type ScreenshotTaskRequest = { id: string; groupId: string; htmlPath: string; viewport: Viewport; }; export declare type ScreenshotTaskResult = { id: string; groupId: string; screenshotPath: string; }; export declare const DEFAULT_VIEWPORT: Viewport;