import type { Transformer } from './transformer'; import type { ViteConfig } from '../config/vite'; import type { TransformContext } from './context'; import type { ServerOptions } from 'vite'; import type { AstParsingResult } from '../ast-parse/astParse'; /** * parse vue.config.js options and transform to vite.config.js */ export declare class VueCliTransformer implements Transformer { context: TransformContext; transform(rootDir: string, astParsingResult?: AstParsingResult): Promise; transformDevServer(devServer: any): ServerOptions; transformGlobalCssImports(rootDir: string, pluginOptions: any, config: ViteConfig): void; }