declare enum PlatformStatus {
    IN_PROGRESS = "IN_PROGRESS",
    COMPLETED = "COMPLETED",
    ERROR = "ERROR",
    /**
     * Of note, we should make an effort to use CANCELED (one 'L') on anything caller facing as
     * that is the American spelling.
     */
    CANCELLED = "CANCELLED"
}
export default PlatformStatus;
//# sourceMappingURL=PlatformStatus.d.ts.map