import type { Plugin } from 'vite'; export interface VeloxPluginOptions { /** Inject floating panel + hook velox-core DevTools API (dev only) */ devtools?: boolean; } /** * Vite plugin that transforms .vx single-file components. * * @example // vite.config.ts * import { velox } from 'velox-compiler'; * export default { plugins: [velox({ devtools: true })] }; */ export declare function velox(opts?: VeloxPluginOptions): Plugin; //# sourceMappingURL=vite-plugin.d.ts.map