import { iConsoleLine, iSuite } from "../interfaces";
export declare class FlagpoleReport {
    readonly suite: iSuite;
    constructor(suite: iSuite);
    toConsole(): Promise<iConsoleLine[]>;
    toJson(): Promise<any>;
    toHTML(): Promise<string>;
    toDelimited(format: string): Promise<string[]>;
    print(): Promise<any>;
    toString(): Promise<string>;
}
