import { WhatsappButtonListSectionProps } from '@botonic/react';
import { FlowBuilderApi } from '../../api';
import { HtWhatsappButtonListSection } from '../hubtype-fields';
import { ContentFieldsBase } from './../content-fields-base';
import { FlowWhatsappButtonListRow } from './flow-whatsapp-button-list-row';
export declare class FlowWhatsappButtonListSection extends ContentFieldsBase {
    title: string;
    rows: FlowWhatsappButtonListRow[];
    static fromHubtypeCMS(component: HtWhatsappButtonListSection, locale: string, cmsApi: FlowBuilderApi): FlowWhatsappButtonListSection;
    toBotonic(sectionIndex: number): WhatsappButtonListSectionProps;
}
