import type { FeedbackScreenshot, ScreenshotCapture } from "./types"; export interface DisplayMediaScreenshotOptions { maxWidth?: number; quality?: number; } export declare function captureVisibleTabWithDisplayMedia(options?: DisplayMediaScreenshotOptions): Promise; type Html2Canvas = (element: HTMLElement, options?: Record) => Promise; export declare function createHtml2CanvasCapture(loadHtml2Canvas: () => Promise<{ default?: Html2Canvas; } | Html2Canvas>, options?: Record): ScreenshotCapture; export {};