import { JsxImportName } from './types.ts'; /** * Most Lit API's are re-exported from multiple packages. Because only Lit * package is declared as an explicit dependency, Lumina's auto-inserted imports * should only import from the Lit package (from the first import path in the * lists below). However, to avoid double-importing things if the file already * imports these APIs from another package, we need to check for all the places * that export these APIs (the 2nd+ items in the lists below). */ export declare const dynamicallyInsertedImportsByName: Record; /** * These runtime imports exist only for type checking or as compiler hints. * The compiler refactors out their usages. Thus, we should also remove out * their imports. This does not happen automatically if using TypeScript's * strict verbatimModuleSyntax setting. */ export declare const compilerOnlyLuminaImports: Set;