import { Plugin } from 'vite'; interface VibeTaggerOptions { /** Enable JSX source tagging. Default: true */ jsxSource?: boolean; /** * Emit a resolved Tailwind theme JSON to `src/tailwind.config.vibe.json` * on build start and on config-file changes. Supports Tailwind v3 * (reads `tailwind.config.ts`) and v4 (reads `src/styles.css` etc.). * Default: false */ tailwindConfig?: boolean; /** Enable debug logging. Default: false */ debug?: boolean; } declare function vibeTagger({ jsxSource, tailwindConfig, debug: _debug, }?: VibeTaggerOptions): Plugin; export { type VibeTaggerOptions, vibeTagger as componentTagger };