import type * as Pinnacle from "../index.mjs";
export type RcsValidateContent =
/**
* Message containing longer text content with optional quick reply buttons. */
Pinnacle.RichText
/**
* Message containing a media file and/or text with optional quick reply buttons.
*
* See [supported media types](https://app.pinnacle.sh/supported-file-types?type=RCS-MEDIA). */
| {
media: string;
quickReplies?: Pinnacle.RichButton[] | undefined;
}
/**
* Message containing cards, each with its own title, subtitle, and/or buttons. Quick replies can also be added.
*
* See [supported file types](https://app.pinnacle.sh/supported-file-types?type=RCS-CARD). */
| Pinnacle.RichCards;