import { Tool } from "./base.js"; declare class BingSerpAPI extends Tool { toJSON(): import("../load/serializable.js").SerializedNotImplemented; name: string; description: string; key: string; params: Record; constructor(apiKey?: string | undefined, params?: Record); /** @ignore */ _call(input: string): Promise; } export { BingSerpAPI };