import { BotonicContext, BotServerMessage } from '@botonic/core';
import { FlowBuilderApi } from '../../api';
import { ContentFieldsBase } from '../content-fields-base';
import { HtWhatsappButtonListNode } from '../hubtype-fields';
import { FlowWhatsappButtonListSection } from './flow-whatsapp-button-list-section';
export declare class FlowWhatsappButtonList extends ContentFieldsBase {
    text: string;
    listButtonText: string;
    sections: FlowWhatsappButtonListSection[];
    static fromHubtypeCMS(component: HtWhatsappButtonListNode, locale: string, cmsApi: FlowBuilderApi): FlowWhatsappButtonList;
    trackFlow(botonicContext: BotonicContext): Promise<void>;
    processContent(botonicContext: BotonicContext): Promise<import("..").FlowContent>;
    toBotonic(botonicContext: BotonicContext): BotServerMessage;
}
