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