import type { Plugin } from 'esbuild'; export interface HTMLPluginOptions { toHtmlPath?: (fileName: string) => string; title?: string; faviconFilePath?: string; } /** create html for each entrypoint */ export declare function htmlPlugin({ title, faviconFilePath, toHtmlPath, }?: HTMLPluginOptions): Plugin; //# sourceMappingURL=esbuild-html-plugin.d.ts.map