import type { PresetEnvOptions } from '@rsbuild/plugin-babel'; export type { TransformOptions as BabelConfig } from '@babel/core'; type DecoratorsVersion = '2023-05' | '2023-01' | '2022-03' | '2021-12' | '2018-09' | 'legacy'; export type PluginDecoratorsOptions = { version: DecoratorsVersion; decoratorsBeforeExport?: boolean; }; export type BasePresetOptions = { presetEnv?: PresetEnvOptions | false; presetTypeScript?: Record | false; pluginDecorators?: PluginDecoratorsOptions | false; }; export type WebPresetOptions = BasePresetOptions & { pluginTransformRuntime?: Record | false; }; export type NodePresetOptions = BasePresetOptions & {};