import React from 'react'; import { BrowserTypes } from '../../typings'; export interface PreviewItemProps { browserType: BrowserTypes | 'storybook'; url?: string; height: number; refresh?: boolean; onRefreshEnd?: () => void; savingWithTitle?: string; onSaveComplete?: (browserType: string) => void; } declare const ScreenshotView: React.FC; export { ScreenshotView };