import type { ResolvedConfig } from "@evjs/ev/config"; import type { PluginHooks } from "@evjs/ev/plugin"; import type { BuildPlan } from "@evjs/shared/manifest"; import type { Configuration } from "webpack"; /** The complete set of webpack compiler configurations for one evjs build. */ export type WebpackConfigs = Configuration[]; export declare function createWebpackConfigs(config: ResolvedConfig, plan: BuildPlan, cwd: string, hooks: PluginHooks[], options?: { clean?: boolean; addWatchFile?: (file: string) => void; }): Promise; //# sourceMappingURL=create-config.d.ts.map