UNPKG

@botonic/react

Version:

Build Chatbots using React

16 lines (15 loc) 420 B
export interface ProductItem { productRetailerId: string; } export interface WhatsappProductListSection { title: string; productItems: ProductItem[]; } export interface WhatsappProductListProps { body: string; header: string; catalogId: string; sections: WhatsappProductListSection[]; footer?: string; } export declare const WhatsappProductList: (props: WhatsappProductListProps) => any;