import { ScreenshotOptions } from './types';

export declare class ScreenshotCapture {
    private defaultOptions;
    capture(options?: ScreenshotOptions): Promise<Blob>;
    captureElement(element: HTMLElement, options?: ScreenshotOptions): Promise<Blob>;
    isSupported(): boolean;
    getDataUrl(options?: ScreenshotOptions): Promise<string>;
}
