import type { Plugin } from 'esbuild'; export declare type htmlPluginParams = { template: string; minify: boolean; output: string; }; export declare function htmlPluginFactory(args: htmlPluginParams): Plugin;