@botonic/plugin-flow-builder
Version:
Use Flow Builder to show your contents
12 lines (11 loc) • 659 B
TypeScript
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;
}