import { IFetcher } from './types.js'; export declare class BrowserFetcher implements IFetcher { private browser; private initBrowser; close(): Promise; fetchHtml(url: string, options?: any): Promise; fetchJson(url: string, options?: any): Promise; fetchText(url: string, options?: any): Promise; }