import type { ResolvedUiContextCaptureClientOptions } from '../options'; export interface SavedScreenshot { path: string; size: number; blob: Blob; } export declare function captureAndSaveScreenshot(target: Element, name: string, options: ResolvedUiContextCaptureClientOptions['screenshot']): Promise;