import type * as Pinnacle from "../index.mjs";
/**
* Message containing longer text content with optional quick reply buttons.
*/
export interface RichText {
/**
* List of interactive quick reply buttons in the message.
* **Limit:** 10 max
*/
quickReplies?: Pinnacle.RichButton[];
/** Text content of the RCS message. */
text: string;
}