/** Unit that represent the status of an operation */
export declare enum OperationStatusEnum {
    'CANCELLED' = "CANCELLED",
    'DELAYED' = "DELAYED",
    'DOING' = "DOING",
    'DONE' = "DONE",
    'ERROR' = "ERROR",
    'SCHEDULED' = "SCHEDULED",
    'TODO' = "TODO"
}
//# sourceMappingURL=OperationStatusEnum.d.ts.map