@botonic/plugin-flow-builder
Version:
Use Flow Builder to show your contents
15 lines (14 loc) • 571 B
TypeScript
/// <reference types="react" />
import { FlowBuilderApi } from '../api';
import { ContentFieldsBase } from './content-fields-base';
import { HtWhatsappCTAUrlButtonNode } from './hubtype-fields';
export declare class FlowWhatsappCtaUrlButtonNode extends ContentFieldsBase {
code: string;
text: string;
header?: string;
footer?: string;
displayText: string;
url: string;
static fromHubtypeCMS(component: HtWhatsappCTAUrlButtonNode, locale: string, cmsApi: FlowBuilderApi): FlowWhatsappCtaUrlButtonNode;
toBotonic(id: string): JSX.Element;
}