export declare const fetchHTML: (url: string) => Promise>;
export declare const processWebpage: (url: string) => Promise;
export declare const searchOnGoogle: (query: string, apiKey: string, maxResults?: number) => Promise<{
title: string;
url: string;
description: string;
trustedSource: boolean;
}[]>;