/// import { ICodeTemplateMapping } from "../js/compileCodeTemplate"; import * as css from "css"; declare class HTMLCode { sourceFile: string; nonce: string; static fromSrc(src: string, sourceFile?: string, nonce?: string): HTMLCode; private internalSrc; private internal$; constructor(sourceFile?: string, nonce?: string); readonly $: CheerioStatic; src: string; createScriptTag(src: string): string; hasHead(): boolean; head(): Cheerio; prependScriptToHead(src: string): void; scriptTags(): Cheerio; styleTags(): Cheerio; selectors(): string[]; rules(): css.Rule[]; instrumentResourceEntry(instrTemplate: Function, mappings?: ICodeTemplateMapping): void; instrumentResourceExit(instrTemplate: Function, mappings?: ICodeTemplateMapping): void; instrumentFunctionEntries(instrTemplate: Function, mappings?: ICodeTemplateMapping): void; breakdown(): any; functionInfo(): any; } export default HTMLCode;