//#region src/index.d.ts interface WebMCPPolyfillInitOptions { /** * Controls installation of navigator.modelContextTesting when this polyfill provides modelContext. * The shim is testing-only and never replaces an existing implementation. * * Off by default so the polyfill stays spec-pure; modelContextTesting is a removed * Chromium preview API. `@mcp-b/global` deliberately opts in (its own default is true). * @default false */ installTestingShim?: boolean; } declare function initializeWebMCPPolyfill(options?: WebMCPPolyfillInitOptions): void; declare function cleanupWebMCPPolyfill(): void; //#endregion export { WebMCPPolyfillInitOptions, cleanupWebMCPPolyfill, initializeWebMCPPolyfill }; //# sourceMappingURL=index.d.ts.map