import type { TemplateOptions } from '@hyperse/html-webpack-plugin-loader'; import { type EvolveEntryItemOption } from '../types/types-entry-map.js'; import { type HtmlPluginConfigConfigData } from './get-html-plugin-config.js'; /** * Normalizes the template inject tokens based on the provided configuration data and entry options. * * @param configData - The configuration data for the HTML plugin. * @param currEntryOption - The current entry option for the evolve item. * @returns An object containing the normalized template inject tokens. */ export declare const normalizeTemplateInjectTokens: (configData: HtmlPluginConfigConfigData, currEntryOption?: EvolveEntryItemOption) => { favicon?: TemplateOptions["favicon"]; headMetaTags?: TemplateOptions["headMetaTags"]; headStyles?: TemplateOptions["headStyles"]; headScripts: TemplateOptions["headScripts"]; bodyScripts: TemplateOptions["bodyScripts"]; headInlineScripts?: TemplateOptions["headInlineScripts"]; headInlineStyles?: TemplateOptions["headInlineStyles"]; };