import type { HtmlTagObject } from 'html-webpack-plugin';
import type { Compiler, WebpackPluginInstance } from 'webpack';
export declare class HtmlInjectScriptWebpackPlugin implements WebpackPluginInstance {
scripts: string[];
constructor(scripts?: string[]);
processScripts(): HtmlTagObject[];
apply(compiler: Compiler): void;
}