/**
* Type of message the agent sends.
*
* `OTP`: One time passwords or verification codes.
* `TRANSACTIONAL`: Account updates, alerts, or notifications.
* `PROMOTIONAL`: Marketing, sales, or offers.
* `MULTI_USE`: Mixed message types.
*/
export declare const RcsMessagingTypeEnum: {
readonly Otp: "OTP";
readonly Transactional: "TRANSACTIONAL";
readonly Promotional: "PROMOTIONAL";
readonly MultiUse: "MULTI_USE";
};
export type RcsMessagingTypeEnum = (typeof RcsMessagingTypeEnum)[keyof typeof RcsMessagingTypeEnum];