import React from 'react'; import { ScreenshotData } from '../../typings'; import { ImageDiffResult } from '../../api/typings'; export interface ScreenshotUpdateProps { screenshot: ScreenshotData; onStateChange: (state: boolean) => void; imageDiffResult?: ImageDiffResult; } declare const ScreenshotUpdate: React.FC; export { ScreenshotUpdate };