///
import { Server } from 'http';
import puppeteer from 'puppeteer';
import { CaptureBaseOptions } from './types';
export declare class CaptureBase {
protected o: CaptureBaseOptions;
protected server?: Server;
protected browser?: puppeteer.Browser;
protected page?: puppeteer.Page;
constructor(o?: CaptureBaseOptions);
stop(): Promise;
initialize(): Promise;
}