import { PathsType } from './getPaths.js'; import { CliEnvType } from './getMode.js'; import '../defineConfig.js'; import 'terser'; import '@swc/core'; import 'esbuild'; import 'https'; import '@rsbuild/core'; declare const applyEnv: (mode: string, cliMode: keyof CliEnvType, paths: PathsType) => void; declare const getEnv: (publicUrl: string) => { raw: Record; stringified: { 'process.env': any; }; }; export { applyEnv, getEnv };