import { PluginWithDevTools } from "@vitejs/devtools-kit"; //#region src/node/plugin.d.ts /** * A slim launcher for the Vitest UI, surfaced in the "Vite+" dock group. * * The dock only appears when the project depends on `vitest`. Clicking it * installs `@vitest/ui` on demand (as a devDependency), spawns `vitest --ui` * on a free port, streams the startup output as a digest, then swaps the dock * entry to an iframe embedding Vitest's own UI once the server is ready. * * This is the canonical "run commands, start a server, then embed it" launcher * built on the kit's `createProcessLauncher`. */ declare function DevToolsVitestUI(): PluginWithDevTools; //#endregion export { DevToolsVitestUI };