export declare class JobProgressEntities { private 'image_id'?; private 'current_task'?; private 'image_name'?; private 'process_percent'?; subJobId?: string; constructor(); withImageId(imageId: string): JobProgressEntities; set imageId(imageId: string | undefined); get imageId(): string | undefined; withCurrentTask(currentTask: string): JobProgressEntities; set currentTask(currentTask: string | undefined); get currentTask(): string | undefined; withImageName(imageName: string): JobProgressEntities; set imageName(imageName: string | undefined); get imageName(): string | undefined; withProcessPercent(processPercent: number): JobProgressEntities; set processPercent(processPercent: number | undefined); get processPercent(): number | undefined; withSubJobId(subJobId: string): JobProgressEntities; } //# sourceMappingURL=JobProgressEntities.d.ts.map