import { TestimBackendExecutionFormatSubsetForReporting } from './testim-services-api/interfaces'; export declare function persist(runId: string, { projectRoot, resultLabel, project, token, jUnitReportPath, }: { projectRoot?: string; resultLabel: string[]; project?: string; token?: string; jUnitReportPath?: string; }): Promise; export declare function generateJunitReport({ testimExecution, projectId, }: { testimExecution: TestimBackendExecutionFormatSubsetForReporting; projectId: string; }): string;