import React from 'react'; import { ScreenshotData, StoryData } from '../../typings'; import { DialogProps, ImageDiffPreviewProps } from '../common'; export interface ScreenshotPreviewDialogProps extends DialogProps, Partial { screenShotData: ScreenshotData; storyData: StoryData; } declare const ScreenshotPreviewDialog: React.FC; export { ScreenshotPreviewDialog };