export interface ILogInfo { title: string; body: string; filePath?: string; time: number; } export default class TestItem { private endTime; readonly startTime: number; failed: any; get time(): number; logs: ILogInfo[]; init(): Promise; dispose(): Promise; log(text: string): void; logAttachment({ title, body, filePath }: { title: any; body: any; filePath: any; }): void; delay(n: number): Promise; private done; } //# sourceMappingURL=TestItem.d.ts.map