import type { TestCaseExecutionDto, TestRunSummaryDto } from '@n8n/api-types'; import type { TestCaseExecution, TestRun } from '@n8n/db'; type TestRunSummarySource = Pick & { finalResult: TestRun['finalResult']; testCaseCount: number; }; export declare function toTestRunSummaryDto(run: TestRunSummarySource): TestRunSummaryDto; export declare function toTestCaseExecutionDto(testCase: TestCaseExecution): TestCaseExecutionDto; export {};