import { TestSessionId } from "../types"; import { WebmateAPISession } from "../webmate-api-session"; /** * Facade for a (running or finished) TestSession */ export declare class TestSession { readonly id: TestSessionId; readonly session: WebmateAPISession; constructor(id: TestSessionId, session: WebmateAPISession); }