UNPKG

@botonic/plugin-flow-builder

Version:

Use Flow Builder to show your contents

15 lines (14 loc) 744 B
/// <reference types="react" /> import { ActionRequest } from '@botonic/react'; 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(request: ActionRequest): Promise<void>; toBotonic(id: string, request: ActionRequest): JSX.Element; }