import { ICommonConfig } from '../types'; export declare function generateHtmlPluginOptions(options: ICommonConfig): { template: string; inject?: undefined; templateContent?: undefined; } | { inject: boolean; templateContent: ({ htmlWebpackPlugin }: any) => string; template?: undefined; };