import { RunGroupEntity } from './run-group.entity'; import { EntityRepository } from '@mikro-orm/postgresql'; import { WorkspaceEntity } from '../workspace/workspace.entity'; export declare class RunGroupService { private readonly runGroupRepository; constructor(runGroupRepository: EntityRepository); createRunGroup({ runGroup, branch, workspace, isCompleted, }: { runGroup: string; branch: string; workspace: WorkspaceEntity; isCompleted?: boolean; }): Promise; exists(runGroup: string): Promise; findOne(runGroup: string): Promise; completeRunGroup(runGroup: string): Promise; }