interface HtmlResponse { html: string; url: string; } export declare class HtmlLoader { static getHTML(targetUrl: string): Promise; } export {};