/** * Setup for mock-doc environment * This file is automatically loaded when using the mock-doc environment in Node.js * * IMPORTANT: This should only be imported/executed in Node.js runtime, not in browsers. * The projects-based config ensures this is only loaded for node:mock-doc projects. */ import { setupGlobal, teardownGlobal } from '@stencil/core/mock-doc'; /** * Apply polyfills to a window object for Stencil components * This function is reused by both the setup file and the custom environment */ export declare function applyMockDocPolyfills(win: any): void; declare let win: any; declare let doc: any; export { win, doc, setupGlobal, teardownGlobal }; //# sourceMappingURL=mock-doc-setup.d.ts.map