import React from 'react'; type ScreenshotStrategy = 'both' | 'beforeAction' | 'afterAction'; interface ScreenshotDisplayProps { strategy: ScreenshotStrategy; relatedImage: string | null; beforeActionImage: string | null; afterActionImage: string | null; relatedImageUrl?: string | null; beforeActionImageUrl?: string | null; afterActionImageUrl?: string | null; mousePosition?: { x: number; y: number; } | null; previousMousePosition?: { x: number; y: number; } | null; action?: string; showCoordinates?: boolean; renderBrowserShell?: boolean; } export declare const ScreenshotDisplay: React.FC; export {}; //# sourceMappingURL=ScreenshotDisplay.d.ts.map