import { Plugin } from 'vite'; interface FluxoUiSourcePluginOptions { sourcePath?: string; useSource?: boolean; } declare function fluxoUiSource(options?: FluxoUiSourcePluginOptions): Plugin; export { fluxoUiSource }; export type { FluxoUiSourcePluginOptions };