import type { Compiler } from 'webpack'; import type { EntryMapItem } from '../../../types/types-entry-map.js'; import type { FlatEvolveOptions } from '../../../types/types-options.js'; /** * The MultiHtmlModifyPlugin class is responsible for modifying the HTML output of the webpack compiler. * It hooks into the compilation process and replaces occurrences of "<%= title %>" with the title specified in the options. */ export declare class MultiHtmlModifyRspackPlugin { private pluginName; private entryMapItemList; private evolveOptions; constructor(evolveOptions: FlatEvolveOptions, list: EntryMapItem[]); apply(compiler: Compiler): void; }