declare function log(logLine: string): void; declare function indent(n: number): string; declare function indentLines(str: string, n: number): string; declare function logPass(logLine: string): void; declare function logFail(logLine: string, withTag?: boolean): void; declare function logSkip(logLine: string): void; declare function logSkipStep(logLine: string): void; declare function logStep(logLine: string): void; declare function logObject(obj: object): void; declare function logResults(results: { failed: number; passed: number; skipped: number; }): void; export { indent, indentLines, log, logFail, logObject, logPass, logResults, logSkip, logSkipStep, logStep, };