import { RunsService } from './runs.service'; import { TestCompletionDto } from './dto/test-completion.dto'; export declare class TestCompletionController { private readonly runsService; private readonly logger; constructor(runsService: RunsService); handleTestCompletion(dto: TestCompletionDto): Promise<{ status: string; message: string; }>; }