import type { Bud } from '@roots/bud-framework';
import type { Options } from '@roots/bud-support/html-webpack-plugin';
import { type ApplyPlugin, Extension } from '@roots/bud-framework/extension';
/**
 * HTML Webpack plugin configuration
 */
declare class BudHtmlWebpackPlugin extends Extension<Options, ApplyPlugin> {
    get interpolatePlugin(): import("../interpolate-html-webpack-plugin/index.js").default;
    /**
     * {@link Extension.make}
     */
    make(bud: Bud, options: Options): Promise<any>;
}
export { BudHtmlWebpackPlugin as default };
export type { Options };
