import * as vite from 'vite'; import { StreamingPluginOptions } from 'unhead/stream/vite'; /** * Vite plugin for Vue streaming SSR support. * Automatically injects HeadStream components into Vue SFC templates. * * @returns Vite plugin configuration object with: * - `name`: Plugin identifier * - `enforce`: Plugin execution order ('pre') * - `transform`: Transform hook for processing .vue files * * @example * ```ts * // vite.config.ts * import { unheadVuePlugin } from '@unhead/vue/stream/vite' * * export default { * plugins: [ * unheadVuePlugin() * ] * } * ``` */ declare function unheadVuePlugin(options?: Pick): vite.Plugin; export { unheadVuePlugin as default, unheadVuePlugin };