import { ToolArguments, ToolResponse } from "../types/index.js";
export declare class SearchToolHandler {
    private readonly GOOGLE_SEARCH_API_KEY;
    private readonly GOOGLE_SEARCH_ENGINE_ID;
    constructor();
    googleSearch(arguments_: ToolArguments): Promise<ToolResponse>;
}
