import webpack = require("webpack");
import HtmlWebpackPlugin = require("html-webpack-plugin");

/**
 * This Webpack plugin inlines script chunks into `index.html`.
 */
declare class InlineChunkHtmlPlugin extends webpack.Plugin {
    constructor(htmlWebpackPlugin: typeof HtmlWebpackPlugin, tests: readonly RegExp[]);
}

export = InlineChunkHtmlPlugin;
