/** * Status of an RCS agent's verification with a verifier (AEGIS or Google). * - `NOT_SENT` — verification email not sent yet * - `SENT` — sent (awaiting reply on the brand contact email) * - `VERIFIED` — verified */ export declare const VerificationStatus: { readonly NotSent: "NOT_SENT"; readonly Sent: "SENT"; readonly Verified: "VERIFIED"; }; export type VerificationStatus = (typeof VerificationStatus)[keyof typeof VerificationStatus];