import { type HttpServer } from "./http-server.js"; export declare function installInMemoryHttp(): void; export declare function nodeFetch(input: string | URL, init?: RequestInit): Promise; export declare function createTestMcpServer(options?: Partial<{ name: string; version: string; enableJsonResponse: boolean; sessionIdGenerator: (() => string) | undefined; oauth: import("./http-server.js").TinyHttpMcpServerOAuthOptions; }>): HttpServer;