export type JobDTO = { id?: string; status?: JobDTO.status; jobType?: string; error?: any; results?: any; type?: string; }; export declare namespace JobDTO { enum status { IN_PROGRESS = "in_progress", ERROR = "error", VALIDATION_ERROR = "validation_error", SUCCESS = "success" } }