import { iSuite } from "../interfaces/isuite"; import { iConsoleLine } from "../interfaces/iconsole-log"; export declare class FlagpoleReport { readonly suite: iSuite; constructor(suite: iSuite); toConsole(): Promise; toJson(): Promise; toHTML(): Promise; toXML(): Promise; toCI(): Promise; toDelimited(format: string): Promise; print(): Promise; toString(): Promise; private cleanXMLCharacters; }