/** * Status of an RCS agent's launch on a specific carrier. * - `NOT_LAUNCHED` — no launch requested yet * - `PENDING` — submitted to the carrier, review in progress * - `LAUNCHED` — live on the carrier */ export declare const CarrierLaunchStatus: { readonly NotLaunched: "NOT_LAUNCHED"; readonly Pending: "PENDING"; readonly Launched: "LAUNCHED"; }; export type CarrierLaunchStatus = (typeof CarrierLaunchStatus)[keyof typeof CarrierLaunchStatus];