import { BaseBuildTool, type Command } from './build-system.js'; export declare class VitePlus extends BaseBuildTool { id: string; name: string; runFromRoot: boolean; logo: { default: string; light: string; dark: string; }; /** Retrieves a list of possible commands for a package */ getCommands(packagePath: string): Promise; /** * Vite Plus has no unique config file (vite.config.* is shared with plain Vite), so * it's detected through a dependency on the `vite-plus` package, declared anywhere * from the base directory up to the repository root. */ detect(): Promise; private resolveLockedVersion; }