import { Element } from '@angular/compiler'; export interface IndexHTML { html: string; base?: Element; favicon?: Element; scripts: Element[]; styles: Element[]; dist: string; } export declare function analyzeHtmlOutput(dist: string): IndexHTML; export declare function prependRootPath(html: string, element: Element, resourceRoot: string, attrsToUpdate: string[]): string; export declare function removeUnusedTags(html: string, base?: Element, favicon?: Element): string; export declare function getHtmlTemplate(indexHtml: IndexHTML, resourcePath: string): string; export declare function toXml(html: string): string;