export type OperationDTO = { id?: string; operationType?: string; createdBy?: string; createdTime?: string; completedTime?: string; status?: OperationDTO.status; results?: any; error?: any; }; export declare namespace OperationDTO { enum status { IN_PROGRESS = "in_progress", ERROR = "error", VALIDATION_ERROR = "validation_error", SUCCESS = "success" } }