/** * Current assignment status of the phone number to this campaign. * * `ASSIGNED`: Number assigned and ready to send messages. * `PENDING_ASSIGNMENT`: In the process of being assigned. * `PENDING_UNASSIGNMENT`: In the process of being unassigned. * `FAILED_ASSIGNMENT`: Failed to assign the number. * `FAILED_UNASSIGNMENT`: Failed to unassign the number. */ export declare const DlcAssignmentStatusEnum: { readonly Assigned: "ASSIGNED"; readonly FailedAssignment: "FAILED_ASSIGNMENT"; readonly FailedUnassignment: "FAILED_UNASSIGNMENT"; readonly PendingAssignment: "PENDING_ASSIGNMENT"; readonly PendingUnassignment: "PENDING_UNASSIGNMENT"; }; export type DlcAssignmentStatusEnum = (typeof DlcAssignmentStatusEnum)[keyof typeof DlcAssignmentStatusEnum];