import { CompilerContext } from '../context/index.ts'; export declare const testSetupFileName = "/@arcgis/lumina-compiler/testSetupFile"; export declare const testSetupFileRegex: RegExp; export declare const testSetupFileNames: string[]; /** * Get the entrypoint code for lazy-loading all components and their * dependencies when running a web component test in the browser. * * Lazy loading is critical for performance. Since each test runs in isolation, * we wouldn't want to load all possible components in each test (and tracking * precisely which components were used is tricky and bug prone - i.e won't * catch dynamic references). */ export declare function buildTestSetupFile(context: CompilerContext): Promise;