import React from 'react'; import { StoryData, ScreenshotData } from '../../typings'; import { DialogProps } from '../common'; export interface ScreenshotListPreviewDialogProps { screenshots: ScreenshotData[]; storyData: StoryData; selectedItem?: string; title?: string; draggable?: boolean; } declare const ScreenshotListPreviewDialog: React.FC; export { ScreenshotListPreviewDialog };