/** * Contains TestExecutionId and optionally TestRunId. */ import { TestExecutionId } from "../types"; export declare class CreateTestExecutionResponse { readonly executionId: TestExecutionId; readonly optTestRunId?: string | undefined; constructor(executionId: TestExecutionId, optTestRunId?: string | undefined); static fromJson(json: any): CreateTestExecutionResponse; }