import React from 'react'; import { ImageDiffResult } from '../../api/typings'; import { ImageDiffPreviewDialogProps } from './ImageDiffPreviewDialog'; import { BrowserTypes } from '../../typings'; export interface ImageDiffMessageProps extends Partial { result: ImageDiffResult; onClose: () => void; title?: string; browserType?: BrowserTypes; } declare const ImageDiffMessage: React.FC; declare const MemoizedImageDiffMessage: React.NamedExoticComponent; export { ImageDiffMessage, MemoizedImageDiffMessage };