import Reporter from 'Reporter/Reporter'; import Block from 'DataTypes/Block'; import QString from 'utils/QString'; export default class HtmlReporter extends Reporter { protected linkNumber: number; protected toggleNumber: number; protected linkCollected: string; constructor(); renderReport(): string; tagValuePair(tag: string | QString, value: string): void; subBlock(value: Block, tag: string): void; toggleAbleBlocks(title: string, showByDefault: boolean): string; allowSvg(): boolean; arrayStart(count: number, title: string, defaultShown: boolean): void; arrayEnd(count: number): void; static replaceAmp(value: string): string; }