@botonic/react
Version:
Build Chatbots using React
18 lines (17 loc) • 476 B
TypeScript
export interface WhatsappButtonListSectionProps {
title?: string;
rows: WhatsappButtonListRowProps[];
}
export interface WhatsappButtonListRowProps {
id: string;
title: string;
description?: string;
}
export interface WhatsappButtonListProps {
header?: string;
body: string;
footer?: string;
button: string;
sections: WhatsappButtonListSectionProps[];
}
export declare const WhatsappButtonList: (props: WhatsappButtonListProps) => any;