import { LuminaPlugins, LuminaOptions } from './publicTypes.ts'; /** * Auto-configure Vite for a Lit web component project. * * Main features: * - Main entrypoint lazy-loads all components on demand * - Allow you to author your components in JSX for great developer experience, * and convert JSX to lit-html templates at build time for maximum efficiency * - Separate bundle for each component to bundle only the necessary code * - Generates types, docs, and api.json for web components * - Generates a CDN build */ export declare function useLumina(options?: LuminaOptions): LuminaPlugins;