export interface HtmlTemplate { templateId: string; templateName: string; css: string; externals: Array<{ name: string; global: string; }>; hash: string; bundle: string; } export default function htmlTemplate({ templateId, templateName, externals, css, bundle, hash, }: HtmlTemplate): string;