export declare class ScreenshotStore {
    private static screenshotFiles;
    static pendingScreenshots(): Array<string>;
    static addScreenshot(screenshotFile: string): void;
    static clear(): void;
}
