import type { WebsearchConfig } from "../config/schema"; type RemoteMcpConfig = { type: "remote"; url: string; enabled: boolean; headers?: Record; oauth?: false; }; export declare function createWebsearchConfig(config?: WebsearchConfig): RemoteMcpConfig; export declare const websearch: RemoteMcpConfig; export {};