import { type PluginOption } from 'vite';
interface Options {
    isBuild: boolean;
    root: string;
    compress: string;
    enableMock?: boolean;
    enableAnalyze?: boolean;
}
declare function createPlugins({ isBuild, root, compress, enableAnalyze }: Options, lastBuildTime: string): Promise<(PluginOption | PluginOption[])[]>;
export { createPlugins };
