UNPKG

@botonic/react

Version:

Build Chatbots using React

16 lines (15 loc) 416 B
interface ActionCard { buttonText: string; buttonUrl: string; imageLink: string; } interface Card { text: string; action: ActionCard; } export interface WhatsappInteractiveMediaCarouselProps { cards: Card[]; textMessage: string; } export declare const WhatsappInteractiveMediaCarousel: (props: WhatsappInteractiveMediaCarouselProps) => import("react/jsx-runtime").JSX.Element; export {};