import type { CheerioAPI, load as LoadT } from "cheerio"; import { Document } from "../document.js"; import { BaseDocumentLoader } from "./base.js"; import type { DocumentLoader } from "./base.js"; export declare class CheerioWebBaseLoader extends BaseDocumentLoader implements DocumentLoader { webPath: string; constructor(webPath: string); static _scrape(url: string): Promise; scrape(): Promise; load(): Promise; static imports(): Promise<{ load: typeof LoadT; }>; }