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;
