import MiniCssExtractPlugin from 'mini-css-extract-plugin'; import { type Plugin } from './utils'; export { MiniCssExtractPlugin }; export interface PluginsProps { module: string; mode: string; entry: string; root: string; version: string; isProd: boolean; ci: boolean; type: 'addon' | 'remote' | 'tcm'; serve: boolean; watch: boolean; analyzer: boolean; analyzerStats: boolean; env: Record; pkg: any; } export declare const plugins: ({ mode, isProd, ci, serve, watch, type, entry, analyzer, analyzerStats, module, version, pkg, env, root, }: PluginsProps) => Plugin[];