/** * Current status of the phone number. * * `PENDING`: Not active during the one or more of the following: purchase pending, brand or campaign pending verification, and pending assignment to a campaign. * `ACTIVE`: Number is ready to send messages. * `FAILURE`: Errors occurred while activating this number. */ export declare const PhoneNumberStatusEnum: { readonly Pending: "PENDING"; readonly Active: "ACTIVE"; readonly Failure: "FAILURE"; }; export type PhoneNumberStatusEnum = (typeof PhoneNumberStatusEnum)[keyof typeof PhoneNumberStatusEnum];