/** * The following code is modified based on * https://github.com/webpack/webpack/blob/4b4ca3bb53f36a5b8fc6bc1bd976ed7af161bd80/lib/OptionsApply.js * * MIT Licensed * Author Tobias Koppers @sokra * Copyright (c) JS Foundation and other contributors * https://github.com/webpack/webpack/blob/main/LICENSE */ import { RspackOptionsNormalized, Compiler } from "."; export declare function applyEntryOptions(compiler: Compiler, options: RspackOptionsNormalized): void; export declare class RspackOptionsApply { constructor(); process(options: RspackOptionsNormalized, compiler: Compiler): void; }