/** * The primary use case for the RCS agent. This helps carriers understand the purpose of the agent during review. * * - `TRANSACTIONAL` — Order confirmations, shipping updates, appointment reminders, and similar transactional notifications. * - `PROMOTIONAL` — Marketing messages, offers, discounts, and promotional content. * - `OTP` — One-time passwords and verification codes. * - `MULTI_USE` — A combination of transactional, promotional, and/or OTP messaging. */ export declare const AgentUseCase: { readonly Transactional: "TRANSACTIONAL"; readonly Promotional: "PROMOTIONAL"; readonly Otp: "OTP"; readonly MultiUse: "MULTI_USE"; }; export type AgentUseCase = (typeof AgentUseCase)[keyof typeof AgentUseCase];