export declare class TapTestResult { id: number; testLogBuffer: Buffer; testOk: boolean; testSettled: boolean; constructor(id: number); /** * adds a logLine to the log buffer of the test (with newline appended) * @param logLine */ addLogLine(logLine: string): void; /** * adds raw text to the log buffer without appending newline (for streaming output) * @param text */ addLogLineRaw(text: string): void; setTestResult(testOkArg: boolean): void; }