import { WhatsappButtonListRow } from '@botonic/shared';
import { FlowBuilderApi } from '../../api';
import { ContentFieldsBase } from '../content-fields-base';
import { HtWhatsappButtonListRow } from '../hubtype-fields';
export declare class FlowWhatsappButtonListRow extends ContentFieldsBase {
    title: string;
    description: string;
    targetId?: string;
    static fromHubtypeCMS(component: HtWhatsappButtonListRow, locale: string, cmsApi: FlowBuilderApi): FlowWhatsappButtonListRow;
    addRowToBotonic(rowIndex: number, sectionIndex: number): WhatsappButtonListRow | undefined;
    private getRowId;
    trackFlow(): Promise<void>;
    processContent(): Promise<void>;
}
