import { type Plugin } from 'vite'; export interface BlueprintPluginOptions { minify?: boolean; verbose?: boolean; } export { BlueprintCompileError, BlueprintCompilerNotFoundError, type BlueprintHost, currentBlueprintHost, formatMissingBlueprintCompiler, type ResolvedBlueprintCompiler, resolveBlueprintCompiler, } from './resolve-compiler.js'; export default function blueprintPlugin(options?: BlueprintPluginOptions): Plugin;