export declare class StepExecutionDto { stepIndex: number; startTime: string; endTime: string; } export declare class TestCompletionDto { testRunId: string; status: 'success' | 'failure'; message?: string; stepExecutions?: StepExecutionDto[]; }