import { StatsError } from 'webpack'; import { Message } from 'esbuild'; declare const BundlerList: readonly ["esbuild", "nuxt:vite", "nuxt:webpack", "rollup", "rspack", "vite", "webpack", "unplugin"]; type ErrorNotification = string | Error | StatsError | Message; type BundlerName = typeof BundlerList[number]; type IconName = BundlerName | 'logo'; interface Options { cwd: string; isNuxt: boolean; } interface UserOptions extends Partial { } interface ResolvedUserOptions extends Options { } export { BundlerName, ErrorNotification, IconName, Options, ResolvedUserOptions, UserOptions };