/** * Current review status of the campaign.
* * `INCOMPLETE`: Not submitted.
* * `IN REVIEW`: Being reviewed by carriers.
* * `VERIFIED`: Approved and ready to send messages.
* * `FAILED`: Issues and errors related to the campaign's details. */ export declare const ProfileStatusEnum: { readonly Incomplete: "INCOMPLETE"; readonly InReview: "IN REVIEW"; readonly Verified: "VERIFIED"; readonly Failed: "FAILED"; }; export type ProfileStatusEnum = (typeof ProfileStatusEnum)[keyof typeof ProfileStatusEnum];