/** * Current assignment status of the toll free number to this campaign. * * `IN_PROGRESS`: Being reviewed. * `WAITING_FOR_PROVIDER`: Being reviewed by our toll-free vendor. * `WAITING_FOR_TELECO`: Final review by carriers before number is live. * `VERIFIED`: Verified and ready to send messages. * `REJECTED`: Issues were found related to your campaign. */ export declare const TollFreeStatusEnum: { readonly WaitingForProvider: "WAITING_FOR_PROVIDER"; readonly WaitingForCustomer: "WAITING_FOR_CUSTOMER"; readonly WaitingForTeleco: "WAITING_FOR_TELECO"; readonly InProgress: "IN_PROGRESS"; readonly Verified: "VERIFIED"; readonly Rejected: "REJECTED"; }; export type TollFreeStatusEnum = (typeof TollFreeStatusEnum)[keyof typeof TollFreeStatusEnum];