/**
 * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
 * This product includes software developed at Datadog (https://www.datadoghq.com/).
 * Copyright 2020-Present Datadog, Inc.
 */
import { UnparsedObject } from "../../datadog-api-client-common/util";
/**
 * The type of action to apply in a bulk update. Allowed values are `priority`, `status`, `assign`, `unassign`, `archive`, `unarchive`, `jira`, `servicenow`, `linear`, `update_project`.
 */
export declare type CaseBulkActionType = typeof PRIORITY | typeof STATUS | typeof ASSIGN | typeof UNASSIGN | typeof ARCHIVE | typeof UNARCHIVE | typeof JIRA | typeof SERVICENOW | typeof LINEAR | typeof UPDATE_PROJECT | UnparsedObject;
export declare const PRIORITY = "priority";
export declare const STATUS = "status";
export declare const ASSIGN = "assign";
export declare const UNASSIGN = "unassign";
export declare const ARCHIVE = "archive";
export declare const UNARCHIVE = "unarchive";
export declare const JIRA = "jira";
export declare const SERVICENOW = "servicenow";
export declare const LINEAR = "linear";
export declare const UPDATE_PROJECT = "update_project";
