import type { Environment } from 'vitest/environments'; export interface StencilEnvironmentOptions { /** * The DOM environment to use for testing * @default 'mock-doc' */ domEnvironment?: 'mock-doc' | 'happy-dom' | 'jsdom'; } /** * Custom Vitest environment for Stencil component testing * * Usage in vitest.config.ts: * ```ts * export default defineConfig({ * test: { * environment: 'stencil', * environmentOptions: { * stencil: { * domEnvironment: 'mock-doc' // or 'happy-dom' or 'jsdom' * } * } * } * }) * ``` */ declare const _default: Environment; export default _default; //# sourceMappingURL=stencil.d.ts.map