import { ITestSession, TestSessionOptions } from '../../interfaces/core/ITestSession'; export declare class TestSession implements ITestSession { readonly id: string; readonly label: string; readonly options: TestSessionOptions; private _completed; private _error?; constructor(id: string, label: string, options: TestSessionOptions); get completed(): boolean; get error(): Error | undefined; markCompleted(): void; setError(error: Error): void; static createId(label: string): string; static getDefaultOptions(): TestSessionOptions; } //# sourceMappingURL=TestSession.d.ts.map